diff options
Diffstat (limited to '')
| -rw-r--r-- | config/dunst/dunstrc | 2 | ||||
| -rw-r--r-- | config/picom.conf | 23 | ||||
| -rw-r--r-- | configuration.nix | 33 |
3 files changed, 44 insertions, 14 deletions
diff --git a/config/dunst/dunstrc b/config/dunst/dunstrc index 0337ae9..a5bdeb4 100644 --- a/config/dunst/dunstrc +++ b/config/dunst/dunstrc @@ -1,5 +1,5 @@ [global] - font = JetBrains Mono, Font Awesome 5 Free Solid, Font Awesome 5 Free Regular, Font Awesome 5 Brands 11 + font = JetBrainsMono Nerd Font, Font Awesome 5 Free Solid, Font Awesome 5 Free Regular, Font Awesome 5 Brands 11 # Allow a small subset of html markup: # <b>bold</b> diff --git a/config/picom.conf b/config/picom.conf new file mode 100644 index 0000000..f0115c3 --- /dev/null +++ b/config/picom.conf @@ -0,0 +1,23 @@ +backend = "glx"; + +inactive-dim = 0.3; +focus-exclude = [ "class_g = 'dwm'", "class_g = 'dmenu'"]; + +#backend = "glx"; +#blur-method = "dual_kawase"; +#blur-strength = 2; + +fading = false; +#fade-delta = 2; + +shadow = false; +#shadow-opacity = 0.9; +#shadow-radius = 20; + +opacity-rule = [ + "99:class_g = 'St' && focused", + "90:class_g = 'St' && !focused", + "98:class_g = 'qutebrowser' && !focused", + "100:class_g = 'qutebrowser' && focused", + "100:class_g = 'dmenu'", +]; diff --git a/configuration.nix b/configuration.nix index b6c0c6e..e60fd23 100644 --- a/configuration.nix +++ b/configuration.nix @@ -26,6 +26,26 @@ in enable = true; }; + hardware.bluetooth.enable = false; + #hardware.bluetooth.package = pkgs.bluezFull; + + services.monero = { + enable = false; + dataDir = "/var/lib/monero"; + # mining.enable = { + # enable = false; + # threads = 2; + # }; + rpc = { + address = "127.0.0.1"; + port = 18081; + # user = "hexyman"; + # password = ""; + }; + }; + + # Enable sound. + sound.enable = true; services.jack = { jackd.enable = true; alsa.enable = false; @@ -86,19 +106,6 @@ in cozette noto-fonts-emoji ]; - # nix-shell -p actkbd --run "sudo actkbd -n -s -d /dev/input/event#" - #services.actkbd = { - #enable = true; - #bindings = [ - #{ keys = [ 224 ]; events = [ "key" ]; command = "/run/current-system/sw/bin/light -A 10"; } - #{ keys = [ 225 ]; events = [ "key" ]; command = "/run/current-system/sw/bin/light -U 10"; } - #]; - #}; - # Enable CUPS to print documents. - # services.printing.enable = true; - - # Enable sound. - sound.enable = true; nix.autoOptimiseStore = true; nix.gc = { |
