diff options
author | Franck Cuny <franck@fcuny.net> | 2022-06-09 09:20:58 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-06-09 09:34:50 -0700 |
commit | 10cf36936e38067f0f2cca5887f732040af28574 (patch) | |
tree | 8be2de9a432d36a03e23c5443a7e0d2610ea9be5 /hosts | |
parent | ref(home): structure and add comments (diff) | |
download | world-10cf36936e38067f0f2cca5887f732040af28574.tar.gz |
ref(GTK): remove the profile for GTK
All the configuration is done at the host level. Change-Id: Ib5ef71ea7955f6872fb08f576e48b24a70600693 Reviewed-on: https://cl.fcuny.net/c/world/+/296 Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to '')
-rw-r--r-- | hosts/aptos/default.nix | 3 | ||||
-rw-r--r-- | hosts/aptos/home.nix | 1 | ||||
-rw-r--r-- | hosts/carmel/default.nix | 3 | ||||
-rw-r--r-- | hosts/carmel/home.nix | 1 |
4 files changed, 8 insertions, 0 deletions
diff --git a/hosts/aptos/default.nix b/hosts/aptos/default.nix index 04d45ee..08fb55e 100644 --- a/hosts/aptos/default.nix +++ b/hosts/aptos/default.nix @@ -10,6 +10,9 @@ ./services.nix ]; + # Allow setting GTK configuration using home-manager + programs.dconf.enable = true; + virtualisation.docker = { enable = true; }; virtualisation.containerd = { diff --git a/hosts/aptos/home.nix b/hosts/aptos/home.nix index 133c6ed..e317788 100644 --- a/hosts/aptos/home.nix +++ b/hosts/aptos/home.nix @@ -5,6 +5,7 @@ # desktop evince.enable = true; + gtk.enable = true; pcmanfm.enable = true; # multimedia diff --git a/hosts/carmel/default.nix b/hosts/carmel/default.nix index 87ad97d..bfe0502 100644 --- a/hosts/carmel/default.nix +++ b/hosts/carmel/default.nix @@ -10,6 +10,9 @@ ./profile.nix ]; + # Allow setting GTK configuration using home-manager + programs.dconf.enable = true; + hardware.opengl.driSupport = true; # This value determines the NixOS release from which the default diff --git a/hosts/carmel/home.nix b/hosts/carmel/home.nix index 133c6ed..e317788 100644 --- a/hosts/carmel/home.nix +++ b/hosts/carmel/home.nix @@ -5,6 +5,7 @@ # desktop evince.enable = true; + gtk.enable = true; pcmanfm.enable = true; # multimedia |