2025-06-01 00:32:00 +01:00
|
|
|
{ inputs, ... }:
|
|
|
|
|
2025-03-21 15:01:39 +00:00
|
|
|
{
|
2025-04-23 14:19:05 +01:00
|
|
|
imports = [
|
2025-06-01 00:32:00 +01:00
|
|
|
inputs.agenix.nixosModules.default
|
|
|
|
inputs.nixos-hardware.nixosModules.common-gpu-intel
|
|
|
|
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t490
|
|
|
|
|
2025-04-23 14:19:05 +01:00
|
|
|
../common
|
|
|
|
|
2025-03-21 15:01:39 +00:00
|
|
|
./hardware-configuration.nix
|
|
|
|
./hardware.nix
|
|
|
|
./services
|
|
|
|
|
2025-05-02 16:59:15 +01:00
|
|
|
../../users/luke.nix
|
2025-04-23 14:19:05 +01:00
|
|
|
../../users/opdavies.nix
|
2025-03-21 15:01:39 +00:00
|
|
|
];
|
|
|
|
|
2025-05-03 16:50:27 +01:00
|
|
|
core = {
|
|
|
|
bluetooth.enable = true;
|
|
|
|
zram.enable = true;
|
2025-04-23 14:19:05 +01:00
|
|
|
};
|
|
|
|
|
2025-05-03 16:50:27 +01:00
|
|
|
desktop.dconf.enable = true;
|
|
|
|
|
2025-05-12 19:10:37 +01:00
|
|
|
nixpad.enable = true;
|
|
|
|
|
2025-03-21 15:01:39 +00:00
|
|
|
boot = {
|
|
|
|
loader = {
|
|
|
|
systemd-boot = {
|
|
|
|
enable = true;
|
|
|
|
configurationLimit = 10;
|
|
|
|
};
|
|
|
|
|
|
|
|
efi = {
|
|
|
|
canTouchEfiVariables = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.extraConfig = ''
|
|
|
|
DefaultTimeoutStopSec=10s
|
|
|
|
'';
|
|
|
|
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
}
|