ci: fix ci after core creation
This commit is contained in:
parent
c9ed0edf59
commit
39acbefbe9
@ -27,7 +27,10 @@ let
|
|||||||
# and imported content of the file as value.
|
# and imported content of the file as value.
|
||||||
#
|
#
|
||||||
pathsToImportedAttrs = paths:
|
pathsToImportedAttrs = paths:
|
||||||
genAttrs' paths (path: {
|
let
|
||||||
|
paths' = filter (hasSuffix ".nix") paths;
|
||||||
|
in
|
||||||
|
genAttrs' paths' (path: {
|
||||||
name = removeSuffix ".nix" (baseNameOf path);
|
name = removeSuffix ".nix" (baseNameOf path);
|
||||||
value = import path;
|
value = import path;
|
||||||
});
|
});
|
||||||
@ -87,7 +90,6 @@ in
|
|||||||
({ suites, ... }: {
|
({ suites, ... }: {
|
||||||
imports = with suites;
|
imports = with suites;
|
||||||
allProfiles ++ allUsers;
|
allProfiles ++ allUsers;
|
||||||
security.mitigations.acceptRisk = true;
|
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
0
overlays/.gitkeep
Normal file
0
overlays/.gitkeep
Normal file
Loading…
Reference in New Issue
Block a user