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
|
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
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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: [
|
||||||
|
|
|
@ -27,8 +27,6 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Fix for qt6 plugins
|
# Enable networking
|
||||||
environment.profileRelativeSessionVariables = {
|
networking.networkmanager.enable = true;
|
||||||
QT_PLUGIN_PATH = ["/lib/qt-6/plugins"];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue