Add home-manager

This commit is contained in:
Marko Korhonen 2024-09-16 08:54:52 +03:00
parent b3416f1f58
commit eae3e9544c
5 changed files with 71 additions and 13 deletions

15
home.nix Normal file
View file

@ -0,0 +1,15 @@
{ lib, pkgs, ... }:
{
home = {
packages = with pkgs; [
neofetch
pass
zsh
];
username = "functionalhacker";
homeDirectory = "/home/functionalhacker";
stateVersion = "24.05";
};
}