summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2026-02-11 15:22:53 +0100
committerJakub Stachurski <j.stachurski@student.utwente.nl>2026-02-11 15:22:53 +0100
commit2f65e7f40e97f6ccb3d164169698033ce1692a76 (patch)
treeee2b64b835a32adbd8b28e292b975165936824ef /flake.nix
parent52e8a6819240c59c8a84b141f9a10a6c7dc7304d (diff)
Spring cleaning
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
- ];
- };
};
};
}