21 lines
No EOL
370 B
Nix
21 lines
No EOL
370 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./packages.nix
|
|
];
|
|
|
|
users.users.lyes = {
|
|
description = "Lyes Saadi";
|
|
home = "/home/lyes";
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" "networkmanager" ];
|
|
shell = pkgs.fish;
|
|
};
|
|
|
|
home-manager.useUserPackages = true;
|
|
home-manager.users.lyes = { pkgs, ... }: {
|
|
home.stateVersion = "22.11";
|
|
};
|
|
} |