2024-08-12 08:47:40 +02:00
|
|
|
{ lib, ... }:
|
2024-08-02 11:12:36 +02:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./home.nix
|
|
|
|
./desktop.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
# Host specific user config goes here
|
2024-08-12 08:47:40 +02:00
|
|
|
#
|
|
|
|
programs.ghostty.settings = {
|
|
|
|
font-size = lib.mkForce 18;
|
|
|
|
};
|
|
|
|
|
|
|
|
dconf.settings = {
|
|
|
|
"org/gnome/shell" = {
|
|
|
|
enabled-extensions = [ "azclock@azclock.gitlab.com" ];
|
|
|
|
};
|
|
|
|
};
|
2024-08-02 11:12:36 +02:00
|
|
|
}
|