From 3e356fe7032bc1af9fc75d671fdda902b7ef7285 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Thu, 14 Oct 2021 15:56:08 +0000 Subject: [PATCH] add git to common home --- flake.nix | 2 +- roles/home/common.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 5eda88f..d46ce6c 100644 --- a/flake.nix +++ b/flake.nix @@ -30,7 +30,7 @@ nixosConfigurations = { architect = host.mkHost { name = "architect"; users = [ { user = "giulio"; roles = []; } ]; }; gAluminum = host.mkHost { name = "gAluminum"; users = [ { user = "giulio"; roles = [ "desktop" "ssh" "git" ]; } ]; roles = [ "gnome" ]; }; - proxy = host.mkHost { name = "proxy"; }; + proxy = host.mkHost { name = "proxy"; users = []; }; }; }; } diff --git a/roles/home/common.nix b/roles/home/common.nix index fe1b6a2..597fcee 100644 --- a/roles/home/common.nix +++ b/roles/home/common.nix @@ -1,7 +1,7 @@ { config, pkgs, ... }: { - imports = [ ./zsh.nix ]; + imports = [ ./zsh.nix ./git.nix ]; home = { stateVersion = "21.05";