summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix35
1 files changed, 1 insertions, 34 deletions
diff --git a/flake.nix b/flake.nix
index f4e1cd8..8a90cec 100644
--- a/flake.nix
+++ b/flake.nix
@@ -56,7 +56,7 @@
# for `nix flake check`
checks = (
forAllSystems (pkgs: {
- formatting = treefmtEval.${pkgs.system}.config.build.check self;
+ formatting = treefmtEval.${pkgs.stdenv.hostPlatform.system}.config.build.check self;
})
);
@@ -89,39 +89,6 @@
inputs.sops-nix.nixosModules.sops
];
};
- vm-desktop = nixpkgs.lib.nixosSystem {
- specialArgs = {
- inherit inputs;
- };
- system = "x86_64-linux";
- modules = [
- ./modules
- ./hosts/test_vm
- ./users/live-user.nix
- inputs.home-manager.nixosModules.default
- inputs.sops-nix.nixosModules.sops
- ];
- };
- vm-shell = nixpkgs.lib.nixosSystem {
- specialArgs = {
- inherit inputs;
- };
- system = "x86_64-linux";
- modules = [
- ./modules
- ./hosts/test_vm
- ./users/live-user.nix
- (
- { lib, ... }:
- {
- addons.desktop.hyprland.enable = lib.mkForce false;
- addons.desktop.xfce.enable = lib.mkForce false;
- }
- )
- inputs.home-manager.nixosModules.default
- inputs.sops-nix.nixosModules.sops
- ];
- };
};
};
}