dotfiles/hosts/_common/components/cosmic.nix
2024-10-10 09:01:06 -05:00

12 lines
365 B
Nix

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