mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
16 lines
374 B
Nix
Executable file
16 lines
374 B
Nix
Executable file
{
|
|
nix.settings = {
|
|
substituters = [
|
|
"https://cosmic.cachix.org/"
|
|
];
|
|
trusted-public-keys = [
|
|
"cosmic.cachix.org-1:Dya9IyXD4xdBehWjrkPv6rtxpmMdRel02smYzA85dPE="
|
|
];
|
|
};
|
|
|
|
environment.sessionVariables.COSMIC_DATA_CONTROL_ENABLED = 1;
|
|
services = {
|
|
desktopManager.cosmic.enable = true;
|
|
displayManager.cosmic-greeter.enable = true;
|
|
};
|
|
}
|