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
|
./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;
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Reference in a new issue