nixos/users.nix

22 lines
390 B
Nix
Raw Normal View History

2021-07-01 01:02:55 +01:00
{config, pkgs, ...}:
{
2021-07-01 02:13:41 +01:00
imports = [ <home-manager/nixos> ];
2021-07-01 01:02:55 +01:00
users.users.giulio = {
2021-07-01 01:28:12 +01:00
description = "Giulio De Pasquale";
2021-07-01 01:02:55 +01:00
isNormalUser = true;
shell = pkgs.zsh;
2021-07-01 01:53:43 +01:00
extraGroups = [ "wheel" "docker" "networkmanager" ];
};
programs.zsh = {
enableBashCompletion = true;
enableCompletion = true;
2021-07-01 01:02:55 +01:00
};
2021-07-01 02:13:41 +01:00
home-manager.users.giulio = {
imports = [ ./home ];
};
2021-07-01 01:02:55 +01:00
}