Create base test-corp environmnt

This creates more commonality between a nixos-anywhere bootstrapped
system and a locally built nixos image, which is good.
This commit is contained in:
Eli Ribble 2025-07-17 19:39:38 +00:00
parent a7e5b4a313
commit 259c621a2f
11 changed files with 204 additions and 32 deletions

View file

@ -3,8 +3,5 @@
with lib;
{
options.myModules.fish.enable = mkEnableOption "custom fish configuration";
config = mkIf config.myModules.fish.enable {
environment.systemPackages = [ pkgs.fish ];
};
environment.systemPackages = [ pkgs.fish ];
}