import home-manager files

This commit is contained in:
Giulio De Pasquale 2021-07-01 03:13:41 +02:00
parent 156f1c72c3
commit 6ef0f3707d

View File

@ -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 ];
};
} }