2024-08-08 07:14:07 +02:00
|
|
|
{ inputs, lib, pkgs, ... }:
|
2024-03-08 09:06:58 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2024-08-08 07:14:07 +02:00
|
|
|
"${inputs.cosmic-modules}/nixos/cosmic/module.nix"
|
2024-03-08 09:06:58 +01:00
|
|
|
];
|
|
|
|
config = {
|
2024-04-19 22:51:28 +02:00
|
|
|
services.desktopManager.cosmic.enable = true;
|
2024-08-16 17:00:49 +02:00
|
|
|
environment.cosmic.excludePackages = with pkgs; [
|
|
|
|
cosmic-edit
|
|
|
|
cosmic-term
|
|
|
|
];
|
2024-03-08 09:06:58 +01:00
|
|
|
};
|
|
|
|
}
|