{ description = "My Nix Configuration"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; # Fixes #133 # See: https://github.com/gytis-ivaskevicius/flake-utils-plus/issues/133 flake-utils-plus.url = github:ravensiris/flake-utils-plus?ref=ravensiris/fix-devshell-legacy-packages; home-manager.url = "github:nix-community/home-manager/master"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; nixos-generators.url = "github:nix-community/nixos-generators"; nixos-generators.inputs.nixpkgs.follows = "nixpkgs"; snowfall-lib.url = "github:snowfallorg/lib"; snowfall-lib.inputs.nixpkgs.follows = "nixpkgs"; snowfall-lib.inputs.flake-utils-plus.follows = "flake-utils-plus"; deploy-rs.url = "github:serokell/deploy-rs"; deploy-rs.inputs.nixpkgs.follows = "nixpkgs"; agenix.url = "github:ryantm/agenix"; agenix.inputs.nixpkgs.follows = "nixpkgs"; agenix.inputs.home-manager.follows = "home-manager"; agenix.inputs.darwin.follows = ""; nixos-hardware.url = "github:NixOS/nixos-hardware/master"; }; outputs = inputs: let lib = inputs.snowfall-lib.mkLib { inherit inputs; src = ./.; }; in lib.mkFlake { overlay-package-namespace = "aa"; channels-config.allowUnfree = true; systems.modules = with inputs; [ agenix.nixosModules.default home-manager.nixosModules.home-manager ]; deploy.nodes = { node = { hostname = "node"; profiles.system = { user = "root"; sshUser = "alejandro"; path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos inputs.self.nixosConfigurations.node; sshOpts = ["-A"]; }; }; pi4 = let system = "aarch64-linux"; pkgs = import inputs.nixpkgs {inherit system;}; deployPkgs = import inputs.nixpkgs { inherit system; overlays = [ inputs.deploy-rs.overlay (self: super: { deploy-rs = { inherit (pkgs) deploy-rs; lib = inputs.deploy-rs.lib; }; }) ]; }; in { hostname = "pi4"; profiles.system = { user = "root"; sshUser = "alejandro"; path = deployPkgs.deploy-rs.lib.aarch64-linux.activate.nixos inputs.self.nixosConfigurations.pi4; # Usually deploy from an x86_64 machine and don't want to bother # trying to build an aarch64 derivation remoteBuild = true; }; }; }; # TODO: Re-enable this when I figure out how to prevent needing to build # dependencies for architectures other than the host machine # checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks inputs.self.deploy) inputs.deploy-rs.lib; }; }