dotfiles/modules/nixos/desktop/cosmic/default.nix

20 lines
423 B
Nix
Raw Normal View History

2025-03-29 23:08:26 -05:00
{
nix.settings = {
substituters = [
"https://cosmic.cachix.org/"
];
trusted-public-keys = [
"cosmic.cachix.org-1:Dya9IyXD4xdBehWjrkPv6rtxpmMdRel02smYzA85dPE="
];
};
environment.sessionVariables.COSMIC_DATA_CONTROL_ENABLED = 1;
services = {
2025-05-14 14:47:44 -05:00
desktopManager.cosmic = {
enable = true;
xwayland.enable = true;
};
# displayManager.cosmic-greeter.enable = true;
2025-03-29 23:08:26 -05:00
};
}