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 ./nixos/hosts/nixosvm
]; ];
}; };
dns01 = nixpkgs.lib.nixosSystem {
inherit specialArgs;
system = "aarch64-linux";
modules = defaultModules ++ [
./nixos/hosts/dns01
];
};
# isoimage = nixpkgs.lib.nixosSystem { # isoimage = nixpkgs.lib.nixosSystem {
# system = "x86_64-linux"; # system = "x86_64-linux";
# inherit specialArgs; # inherit specialArgs;

View file

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