nixfiles/profiles/desktop/default.nix
Sebastian Walz 9f7b02e1cd
Tohu vaBohu
2023-04-03 14:38:02 +02:00

24 lines
589 B
Nix

{ profiles, services, ... }:
Profile "Desktop."
{
configuration
= [
./fonts
./hardware
{
documentation.enable = false;
security.pam.services
= {
# To make Swaylock unlockable.
swaylock = { /* empty */ };
};
}
];
isDesktop = true;
parents = with profiles; [ common ];
services = with services; [ printing ];
}