# 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’). { config, pkgs, ... }: { imports = [ ./hardware-configuration.nix ./packages.nix ]; # DISKS fileSystems."/media/gamedisk4" = { device = "/dev/disk/by-uuid/D290EB87C8A1E82A"; fsType = "ntfs3"; options = [ "uid=1000" "gid=100" "umask=022" ]; }; nix.settings.experimental-features = [ "nix-command" "flakes" ]; boot.kernelParams = [ "iomem=relaxed" "pcie_acs_override=downstream,multifunction,id:10de:1c03,id:10de:10f1" "rd.driver.pre=vfio-pci" "quiet" "pci-stub.ids=10de:1c03,10de:10f1" "iommu=pt" "amd_iommu=on" "kvm.ignore_msrs=1" "mitigations=off" ]; hardware.graphics.enable = true; # Bootloader. boot.loader.grub.enable = true; boot.loader.grub.device = "nodev"; boot.loader.grub.efiSupport = true; networking.hostName = "nixos"; # Define your hostname. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. networking.networkmanager.enable = true; # Set your time zone. time.timeZone = "Europe/Berlin"; # Select internationalisation properties. i18n.defaultLocale = "en_US.UTF-8"; i18n.extraLocaleSettings = { LC_ADDRESS = "de_DE.UTF-8"; LC_IDENTIFICATION = "de_DE.UTF-8"; LC_MEASUREMENT = "de_DE.UTF-8"; LC_MONETARY = "de_DE.UTF-8"; LC_NAME = "de_DE.UTF-8"; LC_NUMERIC = "de_DE.UTF-8"; LC_PAPER = "de_DE.UTF-8"; LC_TELEPHONE = "de_DE.UTF-8"; LC_TIME = "de_DE.UTF-8"; }; # Configure console keymap console.keyMap = "de"; # Define a user account. Don't forget to set a password with ‘passwd’. users.users.user = { isNormalUser = true; description = "user"; extraGroups = [ "networkmanager" "wheel" ]; shell = pkgs.fish; packages = with pkgs; [ ]; }; programs.fish.enable = true; # Enable automatic login for the user. services.getty.autologinUser = "user"; # Allow unfree packages nixpkgs.config.allowUnfree = true; programs.hyprland = { enable = true; xwayland.enable = true; }; # NFS / MPD fileSystems."/media/music" = { device = "192.168.132.149:/media/music"; fsType = "nfs4"; }; boot.supportedFilesystems = [ "nfs4" ]; qt = { enable = true; platformTheme = "qt5ct"; style = "breeze"; }; services.goxlr-utility.enable = true; services.udisks2.enable = true; programs.dms-shell.enable = true; programs.steam.enable = true; programs.neovim.enable = true; security.rtkit.enable = true; systemd.services."rtkit-daemon".enable = true; environment.systemPackages = with pkgs; [ ]; nixpkgs.config.permittedInsecurePackages = [ "electron-39.8.10" ]; # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true; # programs.gnupg.agent = { # enable = true; # enableSSHSupport = true; # }; # List services that you want to enable: # Enable the OpenSSH daemon. # services.openssh.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 = "24.11"; # Did you read the comment? system.autoUpgrade.enable = false; system.autoUpgrade.allowReboot = true; }