Change wallpapers

This commit is contained in:
2026-04-09 09:21:17 +02:00
parent 90bc1eb63d
commit d94d17b139
4 changed files with 44 additions and 6 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 526 KiB

After

Width:  |  Height:  |  Size: 1.2 MiB

-6
View File
@@ -19,12 +19,6 @@
};
};
home.file = {
".config/ghostty/" = {
source = ./config/ghostty;
};
};
# Shell apps
home.shell.nh.enable = true;
home.shell.zsh.enable = true;
Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

+44
View File
@@ -0,0 +1,44 @@
{
lib,
pkgs,
config,
...
}:
with lib;
let
cfg = config.os.shells.gnome;
in
{
options.os.shells.gnome = {
enable = mkEnableOption "System gnome shell service";
};
config = mkIf cfg.enable {
services.displayManager.gdm.enable = true;
services.desktopManager.gnome.enable = true;
services.gnome.games.enable = false;
services.gnome.core-apps.enable = false;
services.gnome.core-developer-tools.enable = false;
services.gvfs.enable = true; # SMB, FTP, ... access
environment = {
gnome.excludePackages = with pkgs; [
gnome-tour
gnome-user-docs
];
systemPackages =
with pkgs;
[ nautilus ]
++ [ ptyxis ]
++ [
loupe
papers
];
};
};
}