fixed missing import for framework.nix

This commit is contained in:
Steven 2023-03-26 20:21:18 -04:00
parent 7b61ac34e8
commit 44e9cfe96a

View file

@ -5,7 +5,6 @@
{ {
imports = [ imports = [
../modules/disko/luks-lvm.nix
(modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")
]; ];
@ -27,17 +26,9 @@
loader = { loader = {
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
systemd-boot.enable = true; systemd-boot.enable = true;
# grub = {
# enable = true;
# version = 2;
# efiSupport = true;
# efiInstallAsRemovable = true;
# device = "/dev/nvme0n1" ;
# };
}; };
}; };
disko.devices = import ../disko/luks-lvm.nix { disko.devices = import ../modules/disko/luks-lvm.nix {
# lib = nixpkgs.lib;
disks = [ "/dev/nvme0n1" ]; disks = [ "/dev/nvme0n1" ];
}; };
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking