Files
nix/modules/hosts/styx.nix
T
2026-08-22 15:50:48 -05:00

31 lines
410 B
Nix

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