chore: update flake

This commit is contained in:
truxnell 2024-03-19 22:51:31 +11:00
parent 0ba869e077
commit 64594224ff
2 changed files with 10 additions and 1 deletions

View file

@ -68,6 +68,15 @@
./nixos/hosts/nixosvm
];
};
dns01 = nixpkgs.lib.nixosSystem {
inherit specialArgs;
system = "aarch64-linux";
modules = defaultModules ++ [
./nixos/hosts/dns01
];
};
# isoimage = nixpkgs.lib.nixosSystem {
# system = "x86_64-linux";
# inherit specialArgs;

View file

@ -1,7 +1,7 @@
{ inputs, ... }: {
unstable-packages = final: _prev: {
unstable = import inputs.nixpkgs-unstable {
system = final.system;
inherit (final) system;
config.allowUnfree = true;
};
};