Inital commit for theming

This commit is contained in:
2025-11-20 18:48:39 +01:00
parent 52a9112c48
commit 1544cc30ad
11 changed files with 436 additions and 129 deletions

View File

@@ -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";
};