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
home/dln

View file

@ -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" ];
};
};
}