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