hai! wo? ich bin ein fisch.

This commit is contained in:
marty 2026-01-10 19:21:12 +01:00
parent eaea15fa3a
commit ef91935d4b
14 changed files with 196 additions and 5 deletions

View file

@ -14,6 +14,7 @@
./wallpaper.nix
./grimblast.nix
./audio.nix
./noctalia.nix
];
home.packages = with pkgs; [
wl-clipboard

View file

@ -0,0 +1,22 @@
{
pkgs,
inputs,
lib,
config,
...
}:
{
options = {
desktop = {
noctalia.enable = lib.mkEnableOption "enable noctalia";
};
};
config = lib.mkIf config.desktop.noctalia.enable {
programs.noctalia-shell = {
enable = true;
};
};
}