Create home-manager config for each user

This commit is contained in:
Pim Kunis 2024-11-21 20:53:35 +01:00
parent fa4cfc0a25
commit 9d1a695e3a
4 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,14 @@
{pkgs, ...}: {
home = {
username = "pim";
homeDirectory = "/home/pim";
stateVersion = "24.05";
};
home.packages = with pkgs.unstable; [
devenv
vlc
handbrake
lutris
];
}