mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 03:33:55 -05:00
lavaridge: add disko
This commit is contained in:
parent
58f0e83065
commit
57dd0caa2f
|
@ -82,6 +82,7 @@
|
|||
system = "x86_64-linux";
|
||||
specialArgs = {inherit inputs;};
|
||||
modules = [
|
||||
disko.nixosModules.disko
|
||||
nixos-hardware.nixosModules.framework-13-7040-amd
|
||||
home-manager.nixosModules.home-manager
|
||||
./hosts/lavaridge
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
imports = [
|
||||
./hardware-configuration.nix # Include the results of the hardware scan.
|
||||
./home.nix
|
||||
./disko.nix
|
||||
];
|
||||
|
||||
boot = {
|
||||
|
|
|
@ -15,18 +15,6 @@
|
|||
boot.kernelModules = ["kvm-amd" "amd-gpu"];
|
||||
boot.extraModulePackages = [];
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-uuid/2a76d315-37f9-406d-b1b2-01fee209139a";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/7BC8-F615";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
swapDevices = [];
|
||||
|
||||
hardware.opengl = {
|
||||
## radv: an open-source Vulkan driver from freedesktop
|
||||
driSupport = true;
|
||||
|
|
Loading…
Reference in a new issue