Move code to fitting file

Server had unnecessary options enabled
This commit is contained in:
GHOSCHT 2024-03-03 12:01:23 +01:00
parent fc21e3db22
commit c50872c6e7
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82
5 changed files with 11 additions and 11 deletions

View file

@ -27,12 +27,8 @@
ntfy-sh # Push notifications to other devices
ipinfo # IP geolocation
ranger # TUI file manager
protonup-rs
trickle # cli network limiter
du-dust # disk usage visualizer
rofi-audio-switcher
mpv # Video player
nvd # Differ
nix-output-monitor

View file

@ -18,5 +18,8 @@
signal-desktop # secure messenger
webcord-vencord # more "privacy friendly" discord client
anki
rofi-audio-switcher # Script to switch default audio sinks/sources
mpv # Video player
];
}

View file

@ -1,5 +1,6 @@
{pkgs, ...}: {
home.packages = with pkgs; [
protonup-rs
heroic
(lutris.override {
extraLibraries = pkgs: [

View file

@ -27,8 +27,6 @@
};
};
# Fix for qt6 plugins
environment.profileRelativeSessionVariables = {
QT_PLUGIN_PATH = ["/lib/qt-6/plugins"];
};
# Enable networking
networking.networkmanager.enable = true;
}

View file

@ -6,12 +6,14 @@
}: {
imports = [./pipewire.nix ../printing.nix ./flatpak.nix ./xremap.nix];
# Enable networking
networking.networkmanager.enable = true;
# Enable for GTK
programs.dconf.enable = true;
# Fix for qt6 plugins
environment.profileRelativeSessionVariables = {
QT_PLUGIN_PATH = ["/lib/qt-6/plugins"];
};
services.xserver = {
displayManager.sddm.enable = true;
};