11 lines
201 B
Nix
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
|
|
}
|
|
|