1
0
Fork 0

Remove unnecessary imports

This commit is contained in:
Malte Brandy 2020-06-02 05:04:40 +02:00
parent 92655376e0
commit 5cffeb0f8a
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9

View file

@ -19,7 +19,6 @@ in {
test-system-config = self.writeHaskellScript {
name = "test-system-config";
inherit bins;
inherit imports;
} (haskellBody "system" ''
nix_build $ ["<nixpkgs/nixos>", "-A", "system"] ++ paths ++ ["-I", [i|nixos-config=#{configDir}/hosts/#{hostname}/configuration.nix|], "-o", [i|result-system-#{hostname}|]] ++ fmap toString args
'');
@ -27,7 +26,6 @@ in {
test-home-config = self.writeHaskellScript {
name = "test-home-config";
inherit bins;
inherit imports;
} (haskellBody "home" ''
nix_build $ paths ++ [[i|#{configDir}/home/target.nix|], "-A", hostname, "-o", [i|result-home-manager-#{hostname}|]] ++ fmap toString args
'');