nix-config/hosts/t490/configuration.nix
Oliver Davies 52821346ba
All checks were successful
/ check (push) Successful in 1m37s
Refactor
2025-07-09 13:37:03 +01:00

41 lines
741 B
Nix

{ inputs, ... }:
{
imports = [
inputs.agenix.nixosModules.default
inputs.nixos-hardware.nixosModules.common-gpu-intel
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t490
../common
./hardware-configuration.nix
./hardware.nix
./services
../../users/luke.nix
../../users/opdavies.nix
];
features = {
core.bluetooth.enable = true;
core.zram.enable = true;
desktop.dconf.enable = true;
};
nixpad.enable = true;
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
systemd-boot.configurationLimit = 10;
};
};
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
'';
networking.networkmanager.enable = true;
}