15 lines
No EOL
302 B
Nix
15 lines
No EOL
302 B
Nix
{ inputs, ... }:
|
|
{
|
|
flake.modules.nixos.aquaticTest = {
|
|
networking.hostName = "aquaticTest";
|
|
imports = with inputs.self.modules.nixos; [
|
|
system-gaming
|
|
vm
|
|
nixdev
|
|
];
|
|
|
|
home-manager.sharedModules = with inputs.self.modules.homeManager; [
|
|
system-gaming
|
|
];
|
|
};
|
|
} |