feat: create Infini-DESKTOP config, remove default

This commit is contained in:
Infinidoge 2021-09-02 08:54:05 -04:00
parent d9ff167849
commit 00f3a285dd
2 changed files with 137 additions and 0 deletions

View file

@ -0,0 +1,35 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "ahci" "xhci_pci" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/c40e2655-8f7e-4dd3-95ab-f2d48639cc59";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/21E6-6801";
fsType = "vfat";
};
fileSystems."/home" =
{ device = "/dev/disk/by-uuid/26438642-0683-4ce3-af6b-b555cb8e388d";
fsType = "ext4";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/dfbe858e-5732-48d7-8777-37ed19138d7e"; }
];
}