ci: fix ci after core creation

This commit is contained in:
Timothy DeHerrera 2021-02-03 19:35:10 -07:00
parent c9ed0edf59
commit 39acbefbe9
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122
2 changed files with 4 additions and 2 deletions

View file

@ -27,7 +27,10 @@ let
# and imported content of the file as value.
#
pathsToImportedAttrs = paths:
genAttrs' paths (path: {
let
paths' = filter (hasSuffix ".nix") paths;
in
genAttrs' paths' (path: {
name = removeSuffix ".nix" (baseNameOf path);
value = import path;
});
@ -87,7 +90,6 @@ in
({ suites, ... }: {
imports = with suites;
allProfiles ++ allUsers;
security.mitigations.acceptRisk = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;

0
overlays/.gitkeep Normal file
View file