dotfiles/users/functionalhacker/home.nix

15 lines
243 B
Nix

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