summary refs log tree commit diff
path: root/hosts/laptop/cfg.nix
diff options
context:
space:
mode:
authortzlil <tzlils@protonmail.com>2023-05-19 16:50:26 +0300
committertzlil <tzlils@protonmail.com>2023-05-19 16:50:26 +0300
commit9c459f48dbbccb583a4671be112d6c692a2cfd30 (patch)
tree25579372fa9aefab4d8b1e81a1b8e1fcee9ced72 /hosts/laptop/cfg.nix
parent3c0270df7fbc7f183a9d03ad6157b3bb6b1861fc (diff)
fix command not found
Diffstat (limited to 'hosts/laptop/cfg.nix')
-rw-r--r--hosts/laptop/cfg.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/hosts/laptop/cfg.nix b/hosts/laptop/cfg.nix
index eefde8b..2b4023a 100644
--- a/hosts/laptop/cfg.nix
+++ b/hosts/laptop/cfg.nix
@@ -104,7 +104,11 @@
     ];
 
     home-manager.users.tzlil = {
-      home.packages = [pkgs.schildichat-desktop pkgs.qutebrowser pkgs.keepassxc];
+      home.packages = [pkgs.schildichat-desktop pkgs.keepassxc];
+      programs.qutebrowser = {
+        enable = true;
+        settings.colors.webpage.darkmode.enabled = true;
+      };
     };
 
     nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";