Commit 2e4915bf1fa0

Vincent Demeester <vincent@sbr.pm>
2020-06-05 16:56:11
users/vincent: add wakasu specific…
… in the future, load dynamic *by-host* file Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 0ec2a3c
Changed files (1)
users
users/vincent/default.nix
@@ -49,6 +49,19 @@ in
     ]
     ++ optionals config.profiles.dev.enable [ (import ./dev) ]
     ++ optionals config.profiles.desktop.enable [ (import ./desktop) ]
+    ++ optionals (config.networking.hostName == "wakasu") [{
+      programs.google-chrome.enable = true;
+      home.packages = with pkgs; [
+        openvpn
+        krb5
+        libosinfo
+        virtmanager
+        thunderbird
+        asciinema
+        gnome3.zenity # use rofi instead
+        oathToolkit
+      ];
+    }]
     ++ optionals config.profiles.laptop.enable [{
       # FIXME move this in its own file
       programs.autorandr.enable = true;
@@ -56,8 +69,7 @@ in
     ++ optionals config.profiles.docker.enable [{
       home.packages = with pkgs; [ docker docker-compose ];
     }]
-    ++
-    optionals (isContainersEnabled && config.profiles.dev.enable) [
+    ++ optionals (isContainersEnabled && config.profiles.dev.enable) [
       (import ./containers)
     ]
   );