migrates config further

This commit is contained in:
Dennis Schoepf 2026-03-03 22:36:18 +01:00
parent d44b7ebdaa
commit 95fd98e0ae
6 changed files with 72 additions and 2 deletions

View file

@ -0,0 +1,17 @@
{ ... }:
{
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
}