This commit is contained in:
Lyes Saadi 2024-05-05 22:27:29 +02:00
parent b92a5da1e5
commit b298cafeca
No known key found for this signature in database
GPG key ID: 17418538BAA17767
9 changed files with 4 additions and 4 deletions

View file

@ -1,32 +0,0 @@
{ pkgs, home-manager, ... }:
{
imports =
[
./packages.nix
home-manager.nixosModules.default
];
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.useGlobalPkgs = true;
home-manager.users.lyes = { pkgs, ... }: {
imports =
[
./home.nix
];
home.username = "lyes";
home.homeDirectory = "/home/lyes";
home.stateVersion = "22.11";
};
}