grimm-nixos-laptop/configuration.nix
2024-10-22 22:05:22 +02:00

36 lines
599 B
Nix

{ lib, pkgs, ... }:
{
imports = [
./overlays
./common
# ./fake_flake.nix
./users.nix
];
# Bootloader.
boot = {
loader.efi.canTouchEfiVariables = true;
# kernelPackages = lib.mkDefault pkgs.linuxPackages_zen;
};
services.logrotate.checkConfig = false; # fixme: actually needed?
nix.package = pkgs.lix;
nixpkgs.config.allowUnfree = true;
grimmShared = {
enable = true;
locale = true;
network = true;
tooling = {
supportedLangs = [
"rust"
"c"
"java"
"python"
];
enable = true;
};
};
}