diff --git a/flake.nix b/flake.nix index b59723a5..b12a0a9f 100644 --- a/flake.nix +++ b/flake.nix @@ -20,6 +20,11 @@ modules = [ "${nixpkgs}/nixos/modules/virtualisation/lxc-container.nix" ./hosts/vault/configuration.nix ]; }; + nixosConfigurations.mosquitto = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ "${nixpkgs}/nixos/modules/virtualisation/lxc-container.nix" ./hosts/mosquitto/configuration.nix ]; + }; + deploy.nodes.bastion = { hostname = "localhost"; fastConnection = true; @@ -47,6 +52,15 @@ }; }; + deploy.nodes.mosquitto = { + hostname = "10.42.42.7"; + fastConnection = true; + profiles.system = { + user = "root"; + path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.mosquitto; + }; + }; + checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib; }; } diff --git a/hosts/mosquitto/configuration.nix b/hosts/mosquitto/configuration.nix new file mode 100644 index 00000000..c1ff6529 --- /dev/null +++ b/hosts/mosquitto/configuration.nix @@ -0,0 +1,27 @@ +# Edit this configuration file to define what should be installed on +# your system. Help is available in the configuration.nix(5) man page +# and in the NixOS manual (accessible by running ‘nixos-help’). + +{ config, pkgs, ... }: + +{ + imports = + [ + # Import common config + ../../common/generic-lxc.nix + ../../common + ]; + + networking.hostName = "mosquitto"; + + # This value determines the NixOS release from which the default + # settings for stateful data, like file locations and database versions + # on your system were taken. It‘s perfectly fine and recommended to leave + # this value at the release version of the first install of this system. + # Before changing this value read the documentation for this option + # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). + system.stateVersion = "21.05"; # Did you read the comment? + + # Additional packages + environment.systemPackages = with pkgs; []; +}