nixfiles/user/user.nix

22 lines
No EOL
442 B
Nix

{ pkgs, ... }:
{
imports =
[
./packages.nix
];
users.users.lyes = {
description = "Lyes Saadi";
home = "/home/lyes";
isNormalUser = true;
initialHashedPassword = ""; # Set for vms and initial installations
extraGroups = [ "wheel" "networkmanager" ];
shell = pkgs.fish;
};
home-manager.useUserPackages = true;
home-manager.users.lyes = { pkgs, ... }: {
home.stateVersion = "22.11";
};
}