feat(gnome): configure gnome user experience

This commit is contained in:
514fpv 2024-01-29 00:20:21 +08:00
parent 4395af295a
commit 37963a496c
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
7 changed files with 143 additions and 1 deletions

11
home/gnome/home.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.passthrough.gnome;
in {
imports = [
./impl/home.nix
./impl/dconf.nix
];
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

101
home/gnome/impl/dconf.nix Normal file
View file

@ -0,0 +1,101 @@
{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.passthrough.gnome;
in mkIf cfg.enable {
dconf.settings = let
p = "org/gnome";
pd = "${p}/desktop";
ps = "${p}/shell";
pse = "${ps}/extensions";
in {
"${pd}/peripherals/mouse".natural-scroll = true;
"${p}/epiphany".ask-for-default = false;
"${p}/evolution-data-server".migrated = true;
"${p}/nautilus/preferences" = {
default-folder-viewer = "icon-view";
migrated-gtk-settings = true;
search-filter-time-type = "last_modified";
};
"${pd}/background" = {
color-shading-type = "solid";
picture-options = "zoom";
picture-uri = "file://${./catppuccin-nix.png}";
picture-uri-dark = "file://${./catppuccin-nix.png}";
primary-color = "#000000000000";
secondary-color = "#000000000000";
};
"${pd}/interface" = {
color-scheme = "prefer-dark";
cursor-theme = "Catppuccin-Frappe-Dark-Cursors";
font-antialiasing = "grayscale";
font-hinting = "slight";
gtk-theme = "Catppuccin-Frappe-Compact-Pink-Dark";
icon-theme = "Papirus-Dark";
};
"${pd}/screensaver" = {
color-shading-type = "solid";
picture-options = "zoom";
picture-uri = "file://${./catppuccin-nix.png}";
primary-color = "#000000000000";
secondary-color = "#000000000000";
};
"${pd}/wm/preferences" = {
action-double-click-titlebar = "toggle-maximize";
action-middle-click-titlebar = "minimize";
button-layout = "close,minimize,maximize:appmenu";
};
"${ps}" = {
disabled-extensions = [
"light-style@gnome-shell-extensions.gcampax.github.com"
"places-menu@gnome-shell-extensions.gcampax.github.com"
"windowsNavigator@gnome-shell-extensions.gcampax.github.com"
"window-list@gnome-shell-extensions.gcampax.github.com"
"dash-to-panel@jderose9.github.com"
];
enabled-extensions = [
"user-theme@gnome-shell-extensions.gcampax.github.com"
"apps-menu@gnome-shell-extensions.gcampax.github.com"
"drive-menu@gnome-shell-extensions.gcampax.github.com"
"workspace-indicator@gnome-shell-extensions.gcampax.github.com"
"dash-to-dock@micxgx.gmail.com"
];
welcome-dialog-last-shown-version = "45.3";
};
"${pse}/user-theme".name = "Catppuccin-Frappe-Compact-Pink-Dark";
"${pse}/dash-to-dock" = {
background-opacity = 0.80000000000000004;
dash-max-icon-size = 48;
dock-position = "BOTTOM";
height-fraction = 0.90000000000000002;
multi-monitor = true;
};
"${pse}/dash-to-panel" = {
animate-appicon-hover-animation-extent = ''{'RIPPLE': 4, 'PLANK': 4, 'SIMPLE': 1}'';
appicon-margin = 0;
appicon-padding = 4;
available-monitors = [ 0 ];
dot-position = "BOTTOM";
hotkeys-overlay-combo = "TEMPORARILY";
leftbox-padding = -1;
panel-anchors = ''{"0":"MIDDLE"}'';
panel-lengths=''{"0":100}'';
panel-sizes=''{"0":42}'';
primary-monitor = 0;
status-icon-padding = -1;
trans-use-custom-bg = false;
tray-padding = -1;
window-preview-title-position = "TOP";
};
};
}

29
home/gnome/impl/home.nix Normal file
View file

@ -0,0 +1,29 @@
{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.passthrough.gnome;
in mkIf cfg.enable {
# cursor theme
home.pointerCursor = {
package = pkgs.catppuccin-cursors.frappeDark;
name = "Catppuccin-Frappe-Dark-Cursors";
};
# gtk theme
gtk.theme = {
package = pkgs.catppuccin-gtk.override {
accents = [ "pink" ];
size = "compact";
#tweaks = [ "rimless" "black" ];
variant = "frappe";
};
name = "Catppuccin-Frappe-Compact-Pink-Dark";
};
home.packages = with pkgs.gnomeExtensions; [
dash-to-panel
dash-to-dock
appindicator
];
}

View file

@ -9,6 +9,7 @@ in mkIf cfg.enable {
services.xserver.displayManager.startx.enable = false;
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
services.udev.packages = with pkgs; [ gnome.gnome-settings-daemon ];
users.home.persist.directories = [ ];
environment.persistence."/nix/persist/fhs".directories = [ ];

View file

@ -4,7 +4,7 @@
, ... }: with lib; let
cfg = config.home.gnome;
in {
imports = [ ./impl.nix ];
imports = [ ./impl/nixos.nix ];
options.home.gnome = {
enable = mkEnableOption "GNOME desktop environment";