dotfiles/home.nix
2024-09-16 08:54:52 +03:00

15 lines
243 B
Nix

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