Files
nixos-conf/configuration.nix
T
KeksNino bed947d4d9 remove hyprland from home manager
+ enable a bunch of programs and uninstall a few programs + fix mpd
2026-06-25 21:24:18 +02:00

190 lines
4.7 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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.enable = true;
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;
programs.dms-shell.enable = true;
programs.steam.enable = true;
programs.yazi.enable = true;
programs.neovim.enable = true;
security.rtkit.enable = true;
systemd.services."rtkit-daemon".enable = true;
environment.systemPackages = with pkgs; [
wget
efibootmgr
gdu
kitty
nemo
awww
jamesdsp
rofi
# waybar
udiskie
udisks2
grimblast
pywal16
xdg-desktop-portal
xdg-desktop-portal-hyprland
btop
bitwarden-desktop
fzf
zinit
zoxide
nitch
fzf
eza
tmux
lxappearance
cliphist
git
adwaita-icon-theme
gnumake
gcc
meson
playerctl
trash-cli
equibop
rmpc
wl-clipboard
cinny-desktop
unzip
p7zip
tree-sitter
];
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;
}