Updated README

This commit is contained in:
Bryan Ramos 2024-01-28 10:47:17 -05:00
parent 83e520b115
commit 21bfd793d4
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
2 changed files with 19 additions and 15 deletions

View file

@ -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

View file

@ -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" ];
};
};
};
};