nix-config/hosts/t490/configuration.nix

40 lines
595 B
Nix

{
imports = [
../common
./hardware-configuration.nix
./hardware.nix
./services
../../users/luke.nix
../../users/opdavies.nix
];
core = {
bluetooth.enable = true;
zram.enable = true;
};
desktop.dconf.enable = true;
boot = {
loader = {
systemd-boot = {
enable = true;
configurationLimit = 10;
};
efi = {
canTouchEfiVariables = true;
};
};
};
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
'';
networking.networkmanager.enable = true;
system.autoUpgrade.enable = true;
}