diff options
Diffstat (limited to 'machines/adax/configuration.nix')
-rwxr-xr-x | machines/adax/configuration.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/machines/adax/configuration.nix b/machines/adax/configuration.nix new file mode 100755 index 0000000..57b80d6 --- /dev/null +++ b/machines/adax/configuration.nix @@ -0,0 +1,16 @@ +{ config, pkgs, ... }: + +{ + + imports = [ + ../base.nix + ../pl.nix + ../../modules/larbs.nix + ]; + + networking.hostName = "adax"; + + environment.systemPackages = with pkgs; [ + ]; + +} |