# Edit this configuration file to define what should be installed on # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). { pkgs , ... }: { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix ]; my = { profiles = { desktop.enable = true; gaming.enable = true; personal.enable = true; }; programs.hyprland.nvidiaSupport = true; programs.hyprland.keyboardLayouts = [ "us" "de" ]; services.mullvad.enable = true; programs.ledger.enable = true; }; home-manager.users.moritz.home.packages = with pkgs; [ jetbrains.idea-community ]; hardware.keyboard.qmk.enable = true; # KERNEL boot.kernelPackages = pkgs.linuxPackages_latest; # BOOT boot = { supportedFilesystems = [ "btrfs" "ntfs" ]; loader = { grub = { enable = true; device = "nodev"; efiSupport = true; useOSProber = true; }; efi.canTouchEfiVariables = true; }; }; # NETWORKING networking = { hostName = "nixos-desktop"; defaultGateway = "192.168.0.1"; nameservers = [ "192.168.0.4" ]; useDHCP = false; interfaces.enp42s0 = { ipv4.addresses = [ { address = "192.168.0.14"; prefixLength = 24; } ]; ipv6.addresses = [ { address = "fe80::60fb:ffc:df6f:e29e"; prefixLength = 64; } ]; }; networkmanager = { enable = true; dns = "none"; }; dhcpcd.extraConfig = '' nohook resolv.conf ''; }; hardware.nvidia.modesetting.enable = true; services.xserver.videoDrivers = [ "nvidia" ]; hardware.opengl = { enable = true; driSupport32Bit = true; driSupport = true; }; services.xserver.xrandrHeads = [ { output = "HDMI-1"; } { output = "HDMI-0"; primary = true; } ]; console.keyMap = "de"; # Powersaving services.tlp.enable = true; powerManagement.enable = true; # sensors hardware.enableAllFirmware = true; environment.systemPackages = with pkgs; [ lm_sensors ]; boot.kernelModules = [ "lm92" "drivetemp" ]; hardware.bluetooth.enable = true; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave # this value at the release version of the first install of this system. # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). system.stateVersion = "22.05"; # Did you read the comment? }