chore: update flake
This commit is contained in:
parent
0ba869e077
commit
64594224ff
2 changed files with 10 additions and 1 deletions
|
@ -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;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ inputs, ... }: {
|
||||
unstable-packages = final: _prev: {
|
||||
unstable = import inputs.nixpkgs-unstable {
|
||||
system = final.system;
|
||||
inherit (final) system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
};
|
||||
|
|
Reference in a new issue