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