From b258c0b323b0f4410b03488e44ee9f3f5ae548e8 Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Tue, 30 Jul 2024 23:58:21 +0200 Subject: [PATCH] Added lorri to config --- home-manager/apps.nix | 1 + machines/common/configuration.nix | 2 ++ machines/luna/configuration.nix | 10 +++++----- pkgs/zsh.nix | 2 ++ 4 files changed, 10 insertions(+), 5 deletions(-) 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)\""; }; }