Change wallpapers
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 526 KiB After Width: | Height: | Size: 1.2 MiB |
@@ -19,12 +19,6 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file = {
|
|
||||||
".config/ghostty/" = {
|
|
||||||
source = ./config/ghostty;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# Shell apps
|
# Shell apps
|
||||||
home.shell.nh.enable = true;
|
home.shell.nh.enable = true;
|
||||||
home.shell.zsh.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 |
@@ -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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user