aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md11
-rw-r--r--nixos/apps.nix1
-rw-r--r--nixos/opt/nvidia.nix11
3 files changed, 18 insertions, 5 deletions
diff --git a/README.md b/README.md
index 49574c5..af6a193 100644
--- a/README.md
+++ b/README.md
@@ -100,16 +100,17 @@ Configure in nixos/environment.nix<br>
### Applications
Configure in nixos/apps.nix<br>
-- Google Chrome
+- Dolphin
- Gimp
+- Google Chrome
+- Libreoffice
+- Librewolf
- Localsend
-- Obsidian
- OBS Studio
+- Obsidian
+- VLC
- Wine
-- Libreoffice
-- Dolphin
- Zen Browser
-- VLC
### Games
Configure in nixos/games<br>
diff --git a/nixos/apps.nix b/nixos/apps.nix
index 1f333cf..29d3bbc 100644
--- a/nixos/apps.nix
+++ b/nixos/apps.nix
@@ -6,6 +6,7 @@
];
environment.systemPackages = with pkgs; [
google-chrome
+ librewolf
blanket
gimp
localsend
diff --git a/nixos/opt/nvidia.nix b/nixos/opt/nvidia.nix
index 4373165..2c414f0 100644
--- a/nixos/opt/nvidia.nix
+++ b/nixos/opt/nvidia.nix
@@ -19,4 +19,15 @@
boot.kernelParams = [ "acpi_backlight=video" ];
boot.initrd.kernelModules = [ "nvidia" "hp_wmi" ];
services.xserver.videoDrivers = [ "nvidia" ];
+ systemd.services.systemd-suspend.environment = {
+ SYSTEMD_SLEEP_FREEZE_USER_SESSIONS = "false";
+ };
+
+ systemd.services.systemd-hibernate.environment = {
+ SYSTEMD_SLEEP_FREEZE_USER_SESSIONS = "false";
+ };
+
+ systemd.services.systemd-hybrid-sleep.environment = {
+ SYSTEMD_SLEEP_FREEZE_USER_SESSIONS = "false";
+ };
}