This commit is contained in:
iFargle 2023-09-19 21:13:53 +09:00
parent 19fcc6f4ad
commit 4838150be4

View file

@ -29,7 +29,7 @@
nixos-rpi4-02 = libx.mkHost { hostname = "nixos-rpi4-02"; platform = "aarch64-linux"; };
nixos-rpi4-03 = libx.mkHost { hostname = "nixos-rpi4-03"; platform = "aarch64-linux"; };
};
homeConfigurations = {
# Virtual Machines
"albert@nixos-vm-01" = libx.mkHome { hostname = "nixos-vm-01"; };
@ -47,7 +47,7 @@
# Devshell for bootstrapping; acessible via 'nix develop' or 'nix-shell' (legacy)
devShells = libx.forAllSystems (system:
let pkgs = nixpkgs.legacyPackages.${system};
in import ./shell.nix { inherit pkgs; }
in import ./shell.nix { inherit pkgs sops-nix; }
);
};
}