Skip to content

Commit d13fdc0

Browse files
authored
Merge pull request #4 from StarrFox/fix-flake-check
fix flake checks
2 parents 939cf1a + 49c5b22 commit d13fdc0

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

hosts/default.nix

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
## These will be present on every NixOS machine by default.
1212
coreModules = [
1313
../modules/core
14-
../secrets
1514

1615
inputs.agenix.nixosModules.default
1716
inputs.home-manager.nixosModules.default
@@ -69,6 +68,7 @@
6968
}
7069
]
7170
++ coreModules
71+
++ (optionals (!isWSL) [../secrets])
7272
++ modules
7373
++ (optionals (length homeModules != 0) [(makeHome isWSL homeModules system)]);
7474
};
@@ -82,7 +82,6 @@ in {
8282
../modules/core/docker.nix
8383
../modules/core/sound.nix
8484

85-
../modules/docker.nix
8685
../modules/steam.nix
8786
../modules/desktop/kde.nix
8887
../modules/hw/nvidia.nix
@@ -97,7 +96,6 @@ in {
9796

9897
../home/alacritty.nix
9998
../home/firefox.nix
100-
../home/gaming.nix
10199
../home/git.nix
102100
../home/gpg.nix
103101
../home/packages
@@ -150,14 +148,15 @@ in {
150148
system = "x86_64-linux";
151149
modules = [
152150
./spectre.nix
151+
../modules/core/docker.nix
153152

154153
inputs.nixos-wsl.nixosModules.wsl
155154
];
156155
isWSL = true;
157156
homeModules = [
158157
../home/git.nix
159158
../home/gpg.nix
160-
../home/programs.nix
159+
../home/packages
161160
../home/xdg.nix
162161
../home/zsh.nix
163162

hosts/spectre.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
defaultUser = "vale";
77
startMenuLaunchers = true;
88

9-
docker-native.enable = true;
109
docker-desktop.enable = true;
1110
};
1211

0 commit comments

Comments
 (0)