10 lines
201 B
Nix
10 lines
201 B
Nix
|
{ pkgs, ... }: {
|
||
|
home.packages = [ ];
|
||
|
programs.bash.enable = true;
|
||
|
|
||
|
# The state version is required and should stay at the version you
|
||
|
# originally installed.
|
||
|
home.stateVersion = "23.11";
|
||
|
}
|
||
|
|