Files
nix/modules/hosts/laptop.nix
2026-03-03 17:25:37 -06:00

21 lines
335 B
Nix

{ den, ... }: {
den.aspects.laptop = {
includes = with den.aspects; [
common
amdgpu
cloudflare-warp
cad
];
nixos = {
networking.hostName = "nix";
services.logind.settings.Login = {
HandleLidSwitch = "ignore";
HandleLidSwitchDocked = "ignore";
};
};
};
}