23 lines
No EOL
430 B
Nix
23 lines
No EOL
430 B
Nix
{ inputs, ... }:
|
|
{
|
|
flake.modules.nixos.controlstation =
|
|
{ ... }:
|
|
{
|
|
networking.hostName = "controlstation";
|
|
imports = with inputs.self.modules.nixos; [
|
|
system-gaming
|
|
amdgpu
|
|
amdcpu
|
|
virtualbox
|
|
aquatic-ai
|
|
goxlr
|
|
nixdev
|
|
backup
|
|
];
|
|
|
|
home-manager.sharedModules = with inputs.self.modules.homeManager; [
|
|
system-gaming
|
|
];
|
|
services.gvfs.enable = true;
|
|
};
|
|
} |