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