diff --git a/home-manager/apps.nix b/home-manager/apps.nix index 49cfdc1..f4667c0 100644 --- a/home-manager/apps.nix +++ b/home-manager/apps.nix @@ -30,6 +30,7 @@ home.packages = with pkgs; [ bitwarden + direnv discord-ptb docker-compose file diff --git a/machines/common/configuration.nix b/machines/common/configuration.nix index cf4e6a1..90db7e4 100644 --- a/machines/common/configuration.nix +++ b/machines/common/configuration.nix @@ -39,6 +39,8 @@ time.timeZone = "Europe/Amsterdam"; + services.lorri.enable = true; + services.tailscale.enable = true; services.mullvad-vpn.enable = true; diff --git a/machines/luna/configuration.nix b/machines/luna/configuration.nix index 121ed7b..c574d5b 100644 --- a/machines/luna/configuration.nix +++ b/machines/luna/configuration.nix @@ -35,11 +35,11 @@ programs.ssh.askPassword = lib.mkForce "/nix/store/qrzq7dqp8dkffb5dvi42q647dhm87ady-ksshaskpass-6.0.3/bin/ksshaskpass"; hardware.pulseaudio.enable = true; -# services.jack = { -# jackd.enable = true; -# alsa.enable = true; -# loopback.enable = false; -# }; + services.jack = { + jackd.enable = true; + alsa.enable = true; + loopback.enable = false; + }; users.extraUsers.horseman.extraGroups = [ "jackaudio" ]; } diff --git a/pkgs/zsh.nix b/pkgs/zsh.nix index 4bc0b1b..2547788 100644 --- a/pkgs/zsh.nix +++ b/pkgs/zsh.nix @@ -31,5 +31,7 @@ custom = "/home/horseman/nix-config/pkgs/zsh/"; theme = "jonathan"; }; + + shellInit = "eval \"$(direnv hook zsh)\""; }; }