Files
nix/modules/hosts/styx.nix
T

29 lines
397 B
Nix

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