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 ntfy-sh # Push notifications to other devices
ipinfo # IP geolocation ipinfo # IP geolocation
ranger # TUI file manager ranger # TUI file manager
protonup-rs
trickle # cli network limiter trickle # cli network limiter
du-dust # disk usage visualizer du-dust # disk usage visualizer
rofi-audio-switcher
mpv # Video player
nvd # Differ nvd # Differ
nix-output-monitor nix-output-monitor

View file

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

View file

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

View file

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

View file

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