diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-11-23 15:29:18 +0100 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-11-23 15:29:18 +0100 |
| commit | 605fa7e8728fadffcad471fef6f62cc4bf6a3082 (patch) | |
| tree | ec20f7830b96c242addef25dbed1b3f3f99fc643 /flake.nix | |
| parent | 4975024003e108098775326f6ca00f2d931a80f0 (diff) | |
Disable fcitx5 and add a vm-shell target
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 33 |
1 files changed, 26 insertions, 7 deletions
@@ -42,32 +42,51 @@ inputs.sops-nix.nixosModules.sops ]; }; - test_vm = nixpkgs.lib.nixosSystem { + full-iso = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs; + isoImage.squashfsCompression = "lz4"; + isoImage.isoLabel = "NIX_WQ_ISO"; }; system = "x86_64-linux"; modules = [ ./common.nix - ./hosts/test_vm - ./users/wilkuu.nix + ./hosts/full-iso + ./users/live-user.nix inputs.home-manager.nixosModules.default + inputs.sops-nix.nixosModules.sops ]; }; - full-iso = nixpkgs.lib.nixosSystem { + vm-desktop = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs; - isoImage.squashfsCompression = "lz4"; - isoImage.isoLabel = "NIX_WQ_ISO"; }; system = "x86_64-linux"; modules = [ ./common.nix - ./hosts/full-iso + ./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 = [ + ./common.nix + ./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 + ]; + }; }; }; } |
