diff --git a/home/common/ghostty.nix b/home/common/ghostty.nix index c146c55..ce3723f 100644 --- a/home/common/ghostty.nix +++ b/home/common/ghostty.nix @@ -44,7 +44,7 @@ in shell-integration = "fish"; - window-decoration = true; + window-decoration = false; gtk-tabs-location = "bottom"; window-padding-x = 12; window-padding-y = 0; diff --git a/home/dln/nemo.nix b/home/dln/nemo.nix index 49687bb..bc690f0 100644 --- a/home/dln/nemo.nix +++ b/home/dln/nemo.nix @@ -1,4 +1,4 @@ -{ ... }: +{ lib, ... }: { imports = [ ./home.nix @@ -6,4 +6,14 @@ ]; # 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" ]; + }; + }; }