zsh for root
This commit is contained in:
parent
71d84d7ed6
commit
b7272fa1d2
16
users.nix
16
users.nix
@ -3,11 +3,17 @@
|
|||||||
{
|
{
|
||||||
imports = [ <home-manager/nixos> ];
|
imports = [ <home-manager/nixos> ];
|
||||||
|
|
||||||
users.users.giulio = {
|
users.users = {
|
||||||
description = "Giulio De Pasquale";
|
giulio = {
|
||||||
isNormalUser = true;
|
description = "Giulio De Pasquale";
|
||||||
shell = pkgs.zsh;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" "docker" "networkmanager" ];
|
shell = pkgs.zsh;
|
||||||
|
extraGroups = [ "wheel" "docker" "networkmanager" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
root = {
|
||||||
|
shell = pkgs.zsh;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
|
Loading…
Reference in New Issue
Block a user