add nix files

This commit is contained in:
2026-06-25 17:24:09 +02:00
parent 0bf10bdf85
commit 637a3ca3a2
6 changed files with 486 additions and 0 deletions
+188
View File
@@ -0,0 +1,188 @@
# 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 =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
];
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.systemd-boot.enable = true;
boot.loader.grub.enable = true;
boot.loader.grub.device = "nodev";
boot.loader.grub.efiSupport = true;
# boot.kernelPackages = pkgs.linuxPackages_zen;
networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking
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 keymap in X11
services.xserver.xkb = {
layout = "de";
variant = "";
};
# Configure console keymap
console.keyMap = "de";
programs.fish.enable = true;
# 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; [];
};
# 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 = "nfs";
};
boot.supportedFilesystems = [ "nfs" ];
services.mpd.settings.musicDirectory = {
# ~/Music
};
# List packages installed in system profile. To search, run:
# $ nix search wget
qt = {
enable = true;
platformTheme = "qt5ct";
style = "breeze";
};
services.goxlr-utility.enable = true;
environment.systemPackages = with pkgs; [
wget
neovim
efibootmgr
gdu
kitty
nemo
legcord
awww
jamesdsp
rofi
waybar
udiskie
librewolf
udisks2
grimblast
pywal16
xdg-desktop-portal
xdg-desktop-portal-hyprland
btop
bitwarden-desktop
fzf
zinit
zoxide
nitch
fzf
tmuxifier
eza
tmux
lxappearance
cliphist
git
adwaita-icon-theme
gnumake
gcc
meson
playerctl
trash-cli
equibop
steam
yazi
rmpc
wl-clipboard
cinny-desktop
unzip
p7zip
];
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;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
# 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. Its 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;
}