commit 2e4915bf1fa02327e0ed3e207760a3377e5cebb6
parent 0ec2a3c0ed592b8dc83fbafeb28b460b2e44f3b3
Author: Vincent Demeester <vincent@sbr.pm>
Date: Fri, 5 Jun 2020 16:56:11 +0200
users/vincent: add wakasu specific…
… in the future, load dynamic *by-host* file
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/users/vincent/default.nix b/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)
]
);