import home-manager files
This commit is contained in:
parent
156f1c72c3
commit
6ef0f3707d
@ -1,10 +1,16 @@
|
|||||||
{config, pkgs, ...}:
|
{config, pkgs, ...}:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
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" ]; # Enable ‘sudo’ for the user.
|
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home-manager.users.giulio = {
|
||||||
|
imports = [ ./home ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user