nemo: host specific config
This commit is contained in:
parent
54b623d4fe
commit
1a193f3699
2 changed files with 12 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue