From 1a193f3699464917f63bd317e77e01a30845bcaf Mon Sep 17 00:00:00 2001 From: Daniel Lundin Date: Mon, 12 Aug 2024 08:47:40 +0200 Subject: [PATCH] nemo: host specific config --- home/common/ghostty.nix | 2 +- home/dln/nemo.nix | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) 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" ]; + }; + }; }