dotfiles/hosts/_common/components/cosmic.nix
RingOfStorms (Joshua Bell) bb8033d547 cosmic module
2024-10-10 14:12:31 -05:00

12 lines
347 B
Nix

{ cosmic, ... }:
{
nix.settings = {
substituters = [ "https://cosmic.cachix.org/" ];
trusted-public-keys = [ "cosmic.cachix.org-1:Dya9IyXD4xdBehWjrkPv6rtxpmMdRel02smYzA85dPE=" ];
};
imports = [ cosmic.nixosModules.default ];
services.desktopManager.cosmic.enable = true;
services.displayManager.cosmic-greeter.enable = true;
}