Inital commit for theming
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
# This is a template hardware configuration file
|
||||
# On a fresh install, this will be replaced by the actual hardware configuration
|
||||
# generated by nixos-generate-config or copied from /etc/nixos/hardware-configuration.nix
|
||||
# This file will be generated automatically during installation
|
||||
# by nixos-generate-config or copied from /etc/nixos/hardware-configuration.nix
|
||||
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
@@ -9,21 +8,19 @@
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
# This is a placeholder - it will be replaced during bootstrap
|
||||
# Your actual hardware configuration will be generated based on your system
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
# These will be auto-generated
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-label/nixos";
|
||||
device = "/dev/sda3";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-label/boot";
|
||||
device = "/dev/sda2";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user