21 lines
479 B
Nix
21 lines
479 B
Nix
{ pkgs, ... }: {
|
|
home.username = "podman";
|
|
home.homeDirectory = pkgs.lib.mkForce "/home/podman";
|
|
|
|
home.packages = [ ];
|
|
programs.bash.enable = true;
|
|
|
|
home.file = {
|
|
"arion-pkgs.nix" = {
|
|
source = ./arion-pkgs.nix;
|
|
};
|
|
"arion-compose.nix" = {
|
|
source = ./arion-compose.nix;
|
|
};
|
|
};
|
|
|
|
# The state version is required and should stay at the version you
|
|
# originally installed.
|
|
home.stateVersion = "23.11";
|
|
}
|