Feature/building portal vm on vultr #59

Merged
Richie merged 16 commits from feature/building-portal-VM-on-vultr into main 2026-08-26 12:45:07 -04:00
2 changed files with 18 additions and 16 deletions
Showing only changes of commit a23c91c4ac - Show all commits
+1 -16
View File
@@ -1,22 +1,7 @@
{ config, ... }:
{
imports = [
./cli
./minimal.nix
./programs.nix
./ssh_config.nix
];
programs = {
home-manager.enable = true;
git.enable = true;
};
home = {
username = "richie";
homeDirectory = "/home/${config.home.username}";
stateVersion = "24.05";
sessionVariables = {
FLAKE = "$HOME/dotfiles";
};
};
}
+17
View File
@@ -0,0 +1,17 @@
{ config, ... }:
{
imports = [
./cli
];
programs = {
home-manager.enable = true;
};
home = {
username = "richie";
homeDirectory = "/home/${config.home.username}";
stateVersion = "24.05";
sessionVariables.FLAKE = "$HOME/dotfiles";
};
}