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 let
installDisk = "sda"; installDisk = "vda";
bootPartitionSize = "512M"; bootPartitionSize = "512M";
swapfileSize = "10G"; swapfileSize = "10G";
in { in {

View File

@@ -75,7 +75,7 @@
user = home-manager.lib.homeManagerConfiguration { user = home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
modules = [ modules = [
(./. + "/profiles" + ("/" systemSettings.profile) + "/home.nix") (./. + "/profiles" + ("/" + systemSettings.profile) + "/home.nix")
]; ];
extraSpecialArgs = { extraSpecialArgs = {
inherit pkgs-stable; inherit pkgs-stable;