diff --git a/nix/hosts/doloro-wsl/home.nix b/nix/hosts/doloro-wsl/home.nix index 2b75c84..b981bc3 100644 --- a/nix/hosts/doloro-wsl/home.nix +++ b/nix/hosts/doloro-wsl/home.nix @@ -8,19 +8,19 @@ { imports = [ - ./modules/hyprland/home.nix - ./modules/quickshell/home.nix - ./modules/chromium/home.nix + # ./modules/hyprland/home.nix + # ./modules/quickshell/home.nix + # ./modules/chromium/home.nix #./modules/neovim/home.nix - ./modules/stylix/home.nix + # ./modules/stylix/home.nix ./modules/nixvim/home.nix ./modules/tmux/home.nix ./modules/theme/home.nix # ./modules/spicetify/home.nix - ./modules/obs/home.nix - ./modules/blender/home.nix + # ./modules/obs/home.nix + # ./modules/blender/home.nix ./modules/fish/home.nix - ./modules/ytm/home.nix + # ./modules/ytm/home.nix ./overlays.nix ]; # Home Manager needs a bit of information about you and the paths it should @@ -47,11 +47,11 @@ # environment. home.packages = with pkgs; [ hello - vim - telegram-desktop - vesktop + # vim + # telegram-desktop + # vesktop # spotify - pavucontrol + # pavucontrol lazygit btop sops @@ -92,34 +92,7 @@ home.sessionVariables = { EDITOR = "nvim"; }; - services = { - dunst = { - enable = true; - }; - }; # {{{{{ TODO Put in different file - systemd.user.services.pw-discordaudio-virtual-device = { - Install = { - WantedBy = [ "hyprland-session.target" ]; - }; - Service = { - ExecStart = "${pkgs.writeShellScript "discord_audio_virt_device" '' - #!/run/current-system/sw/bin/bash - pw-loopback -m '[ FL FR]' --capture-props='media.class=Audio/Sink node.name=DiscordSink' -n DiscordSink - ''}"; - }; - }; - systemd.user.services.pw-gameaudio-virtual-device = { - Install = { - WantedBy = [ "hyprland-session.target" ]; - }; - Service = { - ExecStart = "${pkgs.writeShellScript "game_audio_virt_device" '' - #!/run/current-system/sw/bin/bash - pw-loopback -m '[ FL FR]' --capture-props='media.class=Audio/Sink node.name=GameAudioSink' -n GameAudioSink - ''}"; - }; - }; # }}}}} # Let Home Manager install and manage itself. programs.home-manager.enable = true;