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