Container Deployment

This commit is contained in:
2023-03-08 23:28:13 -05:00
parent f46b0269ea
commit dbba96deba
2 changed files with 5 additions and 5 deletions

View File

@@ -2,9 +2,9 @@
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.newalan.url = "../";
outputs = { self, nixpkgs, newalan, ... }: let
outputs = { self, nixpkgs, newalan }: let
new_alan_overlay = (final: prev: {
new_alan = newalan.packages.newalan;
new_alan = newalan.packages."x86_64-linux".default;
});
in {
nixosConfigurations."staging" = nixpkgs.lib.nixosSystem {