From 9d9978a2548f76f9158d174b0724f9ff36fec244 Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Thu, 28 Mar 2024 16:29:07 +0000 Subject: [PATCH] Add torrent client and make sure the nix deamon is executed when installing --- home.nix | 5 ++++- install.sh | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/home.nix b/home.nix index 723aac67..513ae2d8 100644 --- a/home.nix +++ b/home.nix @@ -16,6 +16,9 @@ # Packages to install: obsidian signal-desktop + fragments + + # Note to self: This config does not include games/benchmarks. I'm using flatpak for those. gnomeExtensions.vitals gnomeExtensions.blur-my-shell @@ -158,7 +161,7 @@ cursorTheme = { name = "Bibata-Modern-Classic"; package = pkgs.bibata-cursors; - size = 20; + size = 22; }; iconTheme = { diff --git a/install.sh b/install.sh index 6e74a629..355b438c 100755 --- a/install.sh +++ b/install.sh @@ -34,6 +34,7 @@ if ! nix --version &>/dev/null; then echo -e "${GREEN}[+] Installing the Nix package manager...${ENDCOLOR}" curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install . $HOME/.nix-profile/etc/profile.d/nix.sh + . /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh echo -e "${GREEN}[I] Installed Nix.${ENDCOLOR}" fi