mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 22:59:15 +00:00
nix: fix flakeModule export (don't use importApply)
This commit is contained in:
parent
1bb9a4f7e1
commit
a8c6796b7a
2 changed files with 8 additions and 16 deletions
|
|
@ -1,6 +1,4 @@
|
|||
localFlake:
|
||||
|
||||
{ inputs, ... }:
|
||||
{ inputs, withSystem, ... }:
|
||||
let
|
||||
mkNixOS =
|
||||
nixosModulesOf: homeModulesOf:
|
||||
|
|
@ -11,7 +9,7 @@ let
|
|||
extraHomeConfig ? { },
|
||||
...
|
||||
}@args:
|
||||
localFlake.withSystem system (
|
||||
withSystem system (
|
||||
{ pkgs, ... }:
|
||||
let
|
||||
specialArgs = {
|
||||
|
|
@ -44,7 +42,7 @@ let
|
|||
extraHomeConfig ? { },
|
||||
...
|
||||
}:
|
||||
localFlake.withSystem system (
|
||||
withSystem system (
|
||||
{ pkgs, ... }:
|
||||
let
|
||||
specialArgs = {
|
||||
|
|
@ -76,7 +74,7 @@ let
|
|||
extraHomeConfig ? { },
|
||||
...
|
||||
}:
|
||||
localFlake.withSystem system (
|
||||
withSystem system (
|
||||
{ pkgs, ... }:
|
||||
let
|
||||
specialArgs = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue