From 71d84d7ed6a0ac25a0c66a71f9b6c975fb5e6043 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Thu, 1 Jul 2021 06:01:36 +0100 Subject: [PATCH] beautify + root has zsh and code --- users.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/users.nix b/users.nix index 9c7322c..bc81747 100644 --- a/users.nix +++ b/users.nix @@ -6,13 +6,17 @@ users.users.giulio = { description = "Giulio De Pasquale"; isNormalUser = true; - shell = pkgs.zsh; - extraGroups = [ "wheel" "docker" "networkmanager" ]; + shell = pkgs.zsh; + extraGroups = [ "wheel" "docker" "networkmanager" ]; }; programs.zsh = { enableBashCompletion = true; - enableCompletion = true; + enableCompletion = true; + }; + + home-manager.users.root = { + imports = [ ./home/zsh.nix ./home/code.nix ]; }; home-manager.users.giulio = {