My NixOS and Home Manager configurations
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

testing voxtype

quasigod 28e9845e 34eb03ca

+11 -15
+10 -7
modules/hosts/hades/default.nix
··· 1 - { 2 - styx, 3 - config, 4 - inputs, 5 - ... 6 - }: 1 + { styx, inputs, ... }: 7 2 { 8 3 den.hosts.x86_64-linux.hades = { 9 4 users.quasi.classes = [ "homeManager" ]; ··· 29 24 }; 30 25 }; 31 26 den.aspects.hades = { 32 - provides.quasi.includes = [ styx.gaming._.max ]; 27 + provides.quasi = { 28 + includes = [ styx.gaming._.max ]; 29 + homeManager = 30 + { lib, pkgs, ... }: 31 + { 32 + systemd.user.services.voxtype.Service.ExecStart = 33 + "${lib.getExe pkgs.voxtype-vulkan} --hotkey WEV_135"; 34 + }; 35 + }; 33 36 includes = with styx; [ 34 37 desktop 35 38 ai._.ollama
+1 -6
modules/hosts/zagreus/default.nix
··· 1 - { 2 - styx, 3 - config, 4 - inputs, 5 - ... 6 - }: 1 + { styx, inputs, ... }: 7 2 { 8 3 den.hosts.x86_64-linux.zagreus = { 9 4 users.quasi.classes = [ "homeManager" ];
-2
modules/niri/default.nix
··· 197 197 198 198 "Mod+V".action = dms "clipboard toggle"; 199 199 200 - "Mod+Semicolon".action.spawn-sh = "handy --toggle-transcription"; 201 - 202 200 "Mod+Shift+S".action.screenshot = [ ]; 203 201 "Mod+S".action.screenshot-window = [ ]; 204 202 "Mod+Ctrl+S".action.spawn-sh = "niri msg action screenshot-screen && wl-paste | satty -f -";