17 lines
409 B
Nix
17 lines
409 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.desktop =
|
|
{ pkgs, ... }:
|
|
{
|
|
services.displayManager.cosmic-greeter.enable = true;
|
|
services.desktopManager.cosmic.enable = true;
|
|
services.system76-scheduler.enable = true;
|
|
|
|
environment.cosmic.excludePackages = with pkgs; [
|
|
cosmic-term
|
|
];
|
|
};
|
|
|
|
# TODO: Persist ~/.config/cosmic after setup
|
|
# and symlink it with home manager
|
|
}
|