mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
Added gnome extensions
This commit is contained in:
@@ -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
15
home/gnome.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user