aboutsummaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix26
1 files changed, 20 insertions, 6 deletions
diff --git a/home.nix b/home.nix
index b142b24..14497c8 100644
--- a/home.nix
+++ b/home.nix
@@ -1,14 +1,28 @@
{ pkgs, ... }:
{
- home.packages = with pkgs; [
- picom
- mtm
- ];
+ #home.packages = with pkgs; [
+ #picom
+ #];
+
+ services.gpg-agent = {
+ enable = true;
+ maxCacheTtl = 864000;
+ defaultCacheTtl = 864000;
+ enableSshSupport = false;
+ };
+
+ home.file = {
+ ".config/dunst".source = ./config/dunst;
+ ".config/lf".source = ./config/lf;
+ ".config/qutebrowser".source = ./config/qutebrowser;
+ ".local/share/qutebrowser/userscripts".source = ./config/qutebrowser/userscripts;
+ ".local/share/qutebrowser/greasemonkey".source = ./config/qutebrowser/greasemonkey;
+ # ".local/share/qutebrowser/sessions".source = ./private-config/qutebrowser/sessions;
+ };
services.picom = {
enable = true;
backend = "glx";
- inactiveOpacity = "0.8";
inactiveDim = "0.3";
opacityRule = [
"98:class_g = 'St' && focused"
@@ -17,7 +31,7 @@
"100:class_g = 'qutebrowser' && focused"
];
extraOptions = ''
- focus-exclude = [ "class_g = 'dwm'" "class_g = 'dmenu'"];
+ focus-exclude = [ "class_g = 'dwm'", "class_g = 'dmenu'"];
'';
menuOpacity = "0.9";
};