| 1234567891011121314151617181920212223242526272829 |
- { config, pkgs, lib, ... }:
- let
- hosts = import ../../config/hosts.nix;
- in
- {
- imports = [
- ./hardware.nix
- ../../nixos/hardware/gpu/nvidia.nix
- ../../nixos/hardware/sound
- ../../nixos/hardware/bluetooth
- ../../nixos/flavors/desktop/sway
- ../../nixos/flavors/desktop/sway/greeter-default.nix
- ../../nixos/features/system/basic.nix
- ../../nixos/features/system/users.nix
- ../../nixos/features/system/gaming.nix
- ];
- nixpkgs.config.allowUnfree = 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";
- }
|