nix-config/hosts/t490/configuration.nix

39 lines
659 B
Nix
Raw Normal View History

{ inputs, ... }:
2025-03-21 15:01:39 +00:00
{
imports = [
inputs.agenix.nixosModules.default
inputs.nixos-hardware.nixosModules.common-gpu-intel
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t490
../common
2025-03-21 15:01:39 +00:00
./hardware-configuration.nix
./services
2025-05-02 16:59:15 +01:00
../../users/luke.nix
../../users/opdavies.nix
2025-03-21 15:01:39 +00:00
];
2025-07-09 08:00:00 +01:00
features = {
desktop.dconf.enable = true;
};
2025-05-03 16:50:27 +01:00
nixpad.enable = true;
2025-03-21 15:01:39 +00:00
boot = {
loader = {
2025-07-09 08:00:00 +01:00
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
systemd-boot.configurationLimit = 10;
2025-03-21 15:01:39 +00:00
};
};
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
'';
networking.networkmanager.enable = true;
}