dotfiles/home/dln/nemo.nix

19 lines
305 B
Nix

{ lib, ... }:
{
imports = [
./home.nix
./desktop.nix
];
# 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" ];
};
};
}