Regenerated

This commit is contained in:
2026-03-23 11:54:37 +00:00
parent 3dd1bbd564
commit fd5012e457
34 changed files with 2 additions and 1404 deletions
@@ -1,54 +0,0 @@
{ pkgs, config, lib, flakeRoot, ... }:
{
############################
# Bootloader (GRUB)
############################
boot.loader = {
grub = {
enable = true;
efiSupport = true;
devices = [ "nodev" ]; # pas aan naar je echte EFI-device indien nodig
useOSProber = true;
timeout = 5;
};
};
############################
# Kernel / boot settings
############################
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelParams = [
"quiet"
"splash" # REQUIRED for Plymouth
"udev.log_level=3"
"rd.systemd.show_status=false"
];
boot.consoleLogLevel = 0;
boot.supportedFilesystems = [ "ntfs" ];
############################
# Plymouth
############################
boot.plymouth = {
enable = true;
theme = "rings";
themePackages = [
(pkgs.adi1090x-plymouth-themes.override {
selected_themes = [ "rings" ];
})
];
};
boot.initrd.systemd.enable = true;
############################
# Clean state
############################
# Remove any old theme environment.etc symlinks
#environment.etc = lib.mkForce {};
system.stateVersion = "26.05";
}
@@ -1,47 +0,0 @@
{
hostname,
pkgs,
lib,
modulesPath,
user,
config,
...
}:
{
imports = [
# (modulesPath + "/installer/scan/not-detected.nix")
#../../hardware/hardware.nix
];
boot.initrd.availableKernelModules = [
"xhci_pci"
"nvme"
"usb_storage"
"sd_mod"
"rtsx_usb_sdmmc"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/69433a14-fbaf-401b-af85-cd1bbf02b4e2";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/811D-0676";
fsType = "vfat";
options = [
"fmask=0077"
"dmask=0077"
];
};
swapDevices = [
{ device = "/dev/disk/by-uuid/b6c557c2-7682-460b-a5e7-8f6f2f429a3a"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}
@@ -1,40 +0,0 @@
{ lib, config, pkgs, inputs, ... }:
let
username = config.defaultUser or "henrov";
modulesPath = ./generated/modules;
# Import all modules recursively (DO NOT evaluate them)
importedModules = inputs.import-tree modulesPath;
# Collect Home Manager user attrsets from modules
hmUsersList =
map (m: m._module.args.hmUsers or {})
importedModules.imports;
in
{
#################################
# Core system config
#################################
networking.hostName = "traveldroid";
system.stateVersion = "26.05";
#################################
# Module imports (critical fix)
#################################
imports =
[
./boot.nix
./hardware-configuration.nix
]
++ importedModules.imports;
#################################
# Home Manager aggregation
#################################
home-manager.users = lib.mkMerge hmUsersList;
}