Add gnome extensions, fix aliases with sudo
This commit is contained in:
parent
f7253ecbe2
commit
dc247e6687
4 changed files with 17 additions and 5 deletions
|
@ -83,10 +83,5 @@ with lib.hm.gvariant;
|
|||
enabled = true;
|
||||
};
|
||||
|
||||
"org/gnome/tweaks" = {
|
||||
show-extensions-notice = false;
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
./firefox.nix
|
||||
./fzf.nix
|
||||
./git.nix
|
||||
./gnome.nix
|
||||
./neovim.nix
|
||||
./pass.nix
|
||||
./ripgrep.nix
|
||||
|
|
13
users/functionalhacker/programs/gnome.nix
Normal file
13
users/functionalhacker/programs/gnome.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
dconf.settings = {
|
||||
"org/gnome/shell" = {
|
||||
disable-user-extensions = false;
|
||||
};
|
||||
};
|
||||
home.packages = with pkgs.gnomeExtensions; [
|
||||
gsconnect
|
||||
night-theme-switcher
|
||||
];
|
||||
}
|
|
@ -95,6 +95,9 @@
|
|||
gpush = "git push";
|
||||
|
||||
o = "xdg-open";
|
||||
|
||||
# Fix aliases with sudo
|
||||
sudo = "sudo ";
|
||||
};
|
||||
|
||||
history = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue