From 1acf0eb0ca9fc35a8ebdffa689c5242f0e060840 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Tue, 26 Mar 2024 18:41:48 -0400 Subject: [PATCH] Change disko setting for qemu-vm and fix path in flake.nix --- disko/luks-btrfs-subvolumes.nix | 2 +- flake.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/disko/luks-btrfs-subvolumes.nix b/disko/luks-btrfs-subvolumes.nix index 47e529f..ea8fcfe 100644 --- a/disko/luks-btrfs-subvolumes.nix +++ b/disko/luks-btrfs-subvolumes.nix @@ -1,5 +1,5 @@ let - installDisk = "sda"; + installDisk = "vda"; bootPartitionSize = "512M"; swapfileSize = "10G"; in { diff --git a/flake.nix b/flake.nix index 6a6a40a..5cbaf2d 100644 --- a/flake.nix +++ b/flake.nix @@ -75,7 +75,7 @@ user = home-manager.lib.homeManagerConfiguration { inherit pkgs; modules = [ - (./. + "/profiles" + ("/" systemSettings.profile) + "/home.nix") + (./. + "/profiles" + ("/" + systemSettings.profile) + "/home.nix") ]; extraSpecialArgs = { inherit pkgs-stable;