Add torrent client and make sure the nix deamon is executed when installing

This commit is contained in:
2024-03-28 16:29:07 +00:00
parent 968b86f4d8
commit b49a264099
2 changed files with 5 additions and 1 deletions

View File

@@ -16,6 +16,9 @@
# Packages to install: # Packages to install:
obsidian obsidian
signal-desktop signal-desktop
fragments
# Note to self: This config does not include games/benchmarks. I'm using flatpak for those.
gnomeExtensions.vitals gnomeExtensions.vitals
gnomeExtensions.blur-my-shell gnomeExtensions.blur-my-shell
@@ -158,7 +161,7 @@
cursorTheme = { cursorTheme = {
name = "Bibata-Modern-Classic"; name = "Bibata-Modern-Classic";
package = pkgs.bibata-cursors; package = pkgs.bibata-cursors;
size = 20; size = 22;
}; };
iconTheme = { iconTheme = {

View File

@@ -34,6 +34,7 @@ if ! nix --version &>/dev/null; then
echo -e "${GREEN}[+] Installing the Nix package manager...${ENDCOLOR}" echo -e "${GREEN}[+] Installing the Nix package manager...${ENDCOLOR}"
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
. $HOME/.nix-profile/etc/profile.d/nix.sh . $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}" echo -e "${GREEN}[I] Installed Nix.${ENDCOLOR}"
fi fi