diff options
feat(sapphire): install LACT
-rw-r--r-- | system-sapphire.nix | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/system-sapphire.nix b/system-sapphire.nix index 8661001..1389795 100644 --- a/system-sapphire.nix +++ b/system-sapphire.nix @@ -122,7 +122,6 @@ programs.dconf.enable = true; services.dbus.packages = with pkgs; [ dconf gcr ]; - environment.systemPackages = with pkgs; [ git git-crypt ]; xdg.portal = { enable = true; @@ -193,4 +192,19 @@ xorg.libxkbfile xorg.libxshmfence ]; + + ### + ### Extra Packages + ### + environment.systemPackages = with pkgs; [ + git git-crypt + lact + ]; + + systemd.packages = with pkgs; [ lact ]; + + ### + ### Extra Services + ### + systemd.services.lactd.wantedBy = [ "multi-user.target" ]; } |