host framenix: use latest firmware from unstable
This commit is contained in:
parent
f43f752fda
commit
e5a5639aa1
2 changed files with 10 additions and 4 deletions
|
@ -31,12 +31,12 @@
|
|||
# FIXME: allow different systems
|
||||
systems = flake-utils.lib.system;
|
||||
# necessary to make the top-level inputs available to system configuration
|
||||
defaultModules = [
|
||||
{ _module.args = { inherit inputs; }; }
|
||||
defaultModules = system: [
|
||||
{ _module.args = { inherit inputs system; }; }
|
||||
];
|
||||
mkSystem = system: extraModules:
|
||||
nixpkgs.lib.nixosSystem rec {
|
||||
modules = defaultModules ++ extraModules;
|
||||
modules = (defaultModules system) ++ extraModules;
|
||||
inherit system;
|
||||
};
|
||||
mkHomeManager = confName: user: system: # unfortunately, home-manager configs are still system-specific
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue