Change disko setting for qemu-vm and fix path in flake.nix

This commit is contained in:
Sravan Balaji
2024-03-26 18:41:48 -04:00
parent 14ee0fd81e
commit 1acf0eb0ca
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
let
installDisk = "sda";
installDisk = "vda";
bootPartitionSize = "512M";
swapfileSize = "10G";
in {

View File

@@ -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;