| 1234567891011121314151617181920212223242526272829303132333435 |
- { config, pkgs, lib, ... }:
- let
- hosts = import ../../config/hosts.nix;
- in
- {
- imports = [
- ./hardware.nix
- ../../nixos/hardware/networking
- ../../nixos/hardware/gpu/nvidia.nix
- ../../nixos/hardware/sound
- ../../nixos/hardware/bluetooth
- ../../nixos/flavors/desktop/hyprland
- ../../nixos/flavors/desktop/hyprland/greeter-default.nix
- ../../nixos/features/system/basic.nix
- ../../nixos/features/system/users.nix
- ../../nixos/features/system/gaming.nix
- ];
- boot.kernelParams = [
- "resume=UUID=b0e53493-71b7-4adc-bc9a-37c16ed9672b"
- ];
- nixpkgs.config.allowUnfree = true;
- hardware.enableAllFirmware = true;
- nix.settings.experimental-features = [ "nix-command" "flakes" ];
- networking.hostName = hosts.dellaptop.hostname;
- boot.loader.systemd-boot.enable = true;
- boot.loader.efi.canTouchEfiVariables = true;
- system.stateVersion = "26.05";
- }
|