Files
nixos/home-manager/home.nix
T
2025-05-06 11:23:09 -05:00

11 lines
201 B
Nix

{ inputs, config, pkgs, ... }:
{
home.username = "biscuit";
home.homeDirectory = "/home/biscuit";
programs.bash.enable = true;
home.stateVersion = "23.11"; # Adjust to your system version
}