From 21bfd793d444f574b7490223b8b3aad24e3ab587 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Sun, 28 Jan 2024 10:47:17 -0500 Subject: [PATCH] Updated README --- README.md | 6 ++-- .../modules/corn/default.nix | 28 ++++++++++--------- 2 files changed, 19 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 2cc09e6..80717c0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ -# MyNix ❄️👨‍💻 +# My NixOS Configurations ❄️👨‍💻 -My personal NixOS stash🔥 +My modular NixOS🔥 + +The `user` directory is where you can customize user configurations, the system is configured to grab all attributes defined in here. The `sysConfig`🖥️ directory contains subdirectories for each of my machines diff --git a/homeConfig/modules/gui/desktopEnvironments/modules/corn/default.nix b/homeConfig/modules/gui/desktopEnvironments/modules/corn/default.nix index b24f5ec..1948c72 100644 --- a/homeConfig/modules/gui/desktopEnvironments/modules/corn/default.nix +++ b/homeConfig/modules/gui/desktopEnvironments/modules/corn/default.nix @@ -16,19 +16,21 @@ in bisq-desktop ]; - systemd.user.services.trezord = { - Unit = { - Description = "Trezor Bridge"; - After = [ "network.target" ]; - Wants = [ "network.target" ]; - PartOf = [ "graphical-session.target" ]; - }; - Service = { - ExecStart = "${pkgs.trezord}/bin/trezord"; - Restart = "always"; - }; - Install = { - WantedBy = [ "default.target" ]; + systemd.user.services = { + trezord = { + Unit = { + Description = "Trezor Bridge"; + After = [ "network.target" ]; + Wants = [ "network.target" ]; + PartOf = [ "graphical-session.target" ]; + }; + Service = { + ExecStart = "${pkgs.trezord}/bin/trezord-go"; + Restart = "always"; + }; + Install = { + WantedBy = [ "default.target" ]; + }; }; }; };