# 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 ./disko.nix ]; my = { profiles = { desktop.enable = true; gaming.enable = true; personal.enable = true; impermanence.enable = true; }; programs.hyprland = { nvidiaSupport = true; monitors = [ "HDMI-A-1,3840x2160,auto,1.2" ",preferred,auto,1" ]; extraConfig = "exec=hyprctl keyword monitor HDMI-A-1,3840x2160@120,auto,1.2"; keyboardLayouts = [ "us" "de" ]; }; services.wallpaper.enable = true; services.ollama.enable = true; programs.ledger.enable = true; }; home-manager.users.moritz.home.packages = with pkgs; [ anki calibre ]; hardware = { keyboard.qmk.enable = true; nvidia.modesetting.enable = true; opengl = { enable = true; driSupport32Bit = true; driSupport = true; }; # sensors enableAllFirmware = true; bluetooth.enable = true; }; boot = { # KERNEL kernelPackages = pkgs.linuxPackages_latest; # BOOT supportedFilesystems = [ "zfs" "btrfs" "ntfs" ]; loader = { systemd-boot.enable = true; efi.canTouchEfiVariables = true; }; kernelModules = [ "lm92" "drivetemp" ]; }; # 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; }; services = { xserver.videoDrivers = [ "nvidia" ]; xserver.xrandrHeads = [ { output = "HDMI-1"; } { output = "HDMI-0"; primary = true; } ]; # Powersaving tlp.enable = true; }; console.keyMap = "de"; powerManagement.enable = true; environment.systemPackages = with pkgs; [ lm_sensors ]; # 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? }