Deleted generated files
This commit is contained in:
@@ -1,46 +0,0 @@
|
||||
{ inputs, ... }:
|
||||
|
||||
inputs.nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
|
||||
# Optional: pass inputs to modules
|
||||
specialArgs = { inherit inputs; };
|
||||
|
||||
modules = [
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
]
|
||||
++ builtins.attrValues (import-tree ./generated/modules)
|
||||
++ [
|
||||
./hardware-configuration.nix
|
||||
|
||||
# Host-specific hardware and system settings
|
||||
({ config, lib, ... }: {
|
||||
networking.hostName = "traveldroid";
|
||||
system.stateVersion = "25.11";
|
||||
|
||||
boot.loader.grub = {
|
||||
enable = true;
|
||||
efiSupport = true;
|
||||
device = "nodev";
|
||||
useOSProber = true;
|
||||
};
|
||||
boot.efi.canTouchEfiVariables = true;
|
||||
|
||||
boot.kernelParams = [
|
||||
"systemd.mask=dev-tpm0.device"
|
||||
"systemd.mask=dev-tpmrm0.device"
|
||||
];
|
||||
|
||||
# User-defined features
|
||||
mySystem.system.core.enable = true;
|
||||
|
||||
# Desktop environment features
|
||||
desktop.hyprland.enable = true;
|
||||
desktop.noctalia.enable = true;
|
||||
desktop.stylix.enable = true;
|
||||
|
||||
# Hardware overrides (host-specific)
|
||||
hardware.nvidia.enable = false;
|
||||
})
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user