mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
Updated README
This commit is contained in:
parent
83e520b115
commit
21bfd793d4
2 changed files with 19 additions and 15 deletions
|
|
@ -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
|
The `sysConfig`🖥️ directory contains subdirectories for each of my machines
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,19 +16,21 @@ in
|
||||||
bisq-desktop
|
bisq-desktop
|
||||||
];
|
];
|
||||||
|
|
||||||
systemd.user.services.trezord = {
|
systemd.user.services = {
|
||||||
Unit = {
|
trezord = {
|
||||||
Description = "Trezor Bridge";
|
Unit = {
|
||||||
After = [ "network.target" ];
|
Description = "Trezor Bridge";
|
||||||
Wants = [ "network.target" ];
|
After = [ "network.target" ];
|
||||||
PartOf = [ "graphical-session.target" ];
|
Wants = [ "network.target" ];
|
||||||
};
|
PartOf = [ "graphical-session.target" ];
|
||||||
Service = {
|
};
|
||||||
ExecStart = "${pkgs.trezord}/bin/trezord";
|
Service = {
|
||||||
Restart = "always";
|
ExecStart = "${pkgs.trezord}/bin/trezord-go";
|
||||||
};
|
Restart = "always";
|
||||||
Install = {
|
};
|
||||||
WantedBy = [ "default.target" ];
|
Install = {
|
||||||
|
WantedBy = [ "default.target" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue