Added gnome extensions

This commit is contained in:
2025-07-06 12:21:59 +02:00
parent 3693366ece
commit 94435a105d
2 changed files with 18 additions and 2 deletions

View File

@@ -1,11 +1,12 @@
{ currentSystemUser, currentSystemDe, ... }: { currentSystemUser, currentSystemDe, ... }:
{ {
imports = [ imports = [
./nvim
./tmux.nix
./fish.nix ./fish.nix
./git.nix ./git.nix
./gnome.nix
./kitty.nix ./kitty.nix
./nvim
./tmux.nix
./zoxide.nix ./zoxide.nix
] ++ (if currentSystemDe == "hyprland" then [ ] ++ (if currentSystemDe == "hyprland" then [
./hyprland ./hyprland

15
home/gnome.nix Normal file
View File

@@ -0,0 +1,15 @@
{ pkgs, currentSystemUser, ... }:
{
dconf = {
enable = true;
settings."org/gnome/shell" = {
disable-user-extensions = false;
enabled-extensions = with pkgs.gnomeExtensions; [
blur-my-shell.extensionUuid
dash-to-dock.extensionUuid
caffeine.extensionUuid
timer.extensionUuid
];
};
};
}