zenix: use nheko, move cosmic stuff

This commit is contained in:
tristan 2024-07-25 20:00:22 +01:00
parent 8e5db18741
commit c36d393ed5
8 changed files with 32 additions and 41 deletions

11
nixos/programs/cosmic.nix Normal file
View file

@ -0,0 +1,11 @@
{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;
}