Skip to content

Commit

Permalink
Merge pull request #4 from StarrFox/fix-flake-check
Browse files Browse the repository at this point in the history
fix flake checks
  • Loading branch information
vbe0201 committed Dec 6, 2023
2 parents 939cf1a + 49c5b22 commit d13fdc0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
7 changes: 3 additions & 4 deletions hosts/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
## These will be present on every NixOS machine by default.
coreModules = [
../modules/core
../secrets

inputs.agenix.nixosModules.default
inputs.home-manager.nixosModules.default
Expand Down Expand Up @@ -69,6 +68,7 @@
}
]
++ coreModules
++ (optionals (!isWSL) [../secrets])
++ modules
++ (optionals (length homeModules != 0) [(makeHome isWSL homeModules system)]);
};
Expand All @@ -82,7 +82,6 @@ in {
../modules/core/docker.nix
../modules/core/sound.nix

../modules/docker.nix
../modules/steam.nix
../modules/desktop/kde.nix
../modules/hw/nvidia.nix
Expand All @@ -97,7 +96,6 @@ in {

../home/alacritty.nix
../home/firefox.nix
../home/gaming.nix
../home/git.nix
../home/gpg.nix
../home/packages
Expand Down Expand Up @@ -150,14 +148,15 @@ in {
system = "x86_64-linux";
modules = [
./spectre.nix
../modules/core/docker.nix

inputs.nixos-wsl.nixosModules.wsl
];
isWSL = true;
homeModules = [
../home/git.nix
../home/gpg.nix
../home/programs.nix
../home/packages
../home/xdg.nix
../home/zsh.nix

Expand Down
1 change: 0 additions & 1 deletion hosts/spectre.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
defaultUser = "vale";
startMenuLaunchers = true;

docker-native.enable = true;
docker-desktop.enable = true;
};

Expand Down

0 comments on commit d13fdc0

Please sign in to comment.