more refactor. adding shikane
This commit is contained in:
parent
14ad4cd2c5
commit
7b26c73b59
18 changed files with 851 additions and 764 deletions
53
modules/home/gnome.nix
Normal file
53
modules/home/gnome.nix
Normal file
|
@ -0,0 +1,53 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
home.packages = with pkgs; [
|
||||
gnomeExtensions.just-perfection
|
||||
gnomeExtensions.dash-to-dock
|
||||
gnomeExtensions.paperwm
|
||||
gnomeExtensions.custom-hot-corners-extended
|
||||
gnomeExtensions.media-controls
|
||||
gnomeExtensions.looking-glass-button
|
||||
gnomeExtensions.auto-power-profile
|
||||
gnomeExtensions.appindicator
|
||||
gnome-software
|
||||
gnome-tweaks
|
||||
gnome-photos
|
||||
gnome-keyring
|
||||
];
|
||||
|
||||
dconf.settings = {
|
||||
"org/gnome/desktop/background" = {
|
||||
picture-options = "none";
|
||||
primary-color = "#000000";
|
||||
};
|
||||
|
||||
"org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
};
|
||||
|
||||
"org/gnome/shell/keybindings" = {
|
||||
shift-overview-up = ["disabled"];
|
||||
shift-overview-down = ["disabled"];
|
||||
switch-to-application-1 = ["disabled"];
|
||||
switch-to-application-2 = ["disabled"];
|
||||
switch-to-application-3 = ["disabled"];
|
||||
switch-to-application-4 = ["disabled"];
|
||||
switch-to-application-5 = ["disabled"];
|
||||
switch-to-application-6 = ["disabled"];
|
||||
switch-to-application-7 = ["disabled"];
|
||||
switch-to-application-8 = ["disabled"];
|
||||
switch-to-application-9 = ["disabled"];
|
||||
switch-to-application-10 = ["disabled"];
|
||||
};
|
||||
|
||||
"org/gnome/desktop/wm/keybindings" = {
|
||||
switch-to-workspace-up = ["disabled"];
|
||||
switch-to-workspace-down = ["disabled"];
|
||||
move-to-workspace-up = ["disabled"];
|
||||
move-to-workspace-down = ["disabled"];
|
||||
};
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue