Move code to fitting file
Server had unnecessary options enabled
This commit is contained in:
parent
fc21e3db22
commit
c50872c6e7
5 changed files with 11 additions and 11 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
protonup-rs
|
||||
heroic
|
||||
(lutris.override {
|
||||
extraLibraries = pkgs: [
|
||||
|
|
|
@ -27,8 +27,6 @@
|
|||
};
|
||||
};
|
||||
|
||||
# Fix for qt6 plugins
|
||||
environment.profileRelativeSessionVariables = {
|
||||
QT_PLUGIN_PATH = ["/lib/qt-6/plugins"];
|
||||
};
|
||||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue