nemo: host specific config

This commit is contained in:
Daniel Lundin 2024-08-12 08:47:40 +02:00
parent 54b623d4fe
commit 1a193f3699
Signed by: dln
SSH key fingerprint: SHA256:Vhqxf7VIXwfS0r2j6bJiJ5A+hjhzMODtihuHIybqf3s
2 changed files with 12 additions and 2 deletions

View file

@ -44,7 +44,7 @@ in
shell-integration = "fish"; shell-integration = "fish";
window-decoration = true; window-decoration = false;
gtk-tabs-location = "bottom"; gtk-tabs-location = "bottom";
window-padding-x = 12; window-padding-x = 12;
window-padding-y = 0; window-padding-y = 0;

View file

@ -1,4 +1,4 @@
{ ... }: { lib, ... }:
{ {
imports = [ imports = [
./home.nix ./home.nix
@ -6,4 +6,14 @@
]; ];
# Host specific user config goes here # Host specific user config goes here
#
programs.ghostty.settings = {
font-size = lib.mkForce 18;
};
dconf.settings = {
"org/gnome/shell" = {
enabled-extensions = [ "azclock@azclock.gitlab.com" ];
};
};
} }