fixed rdp.nix and updated custom add readme

This commit is contained in:
2026-03-24 20:53:01 -05:00
parent 7e4bcaa403
commit 6ab52120e1
2 changed files with 8 additions and 8 deletions

View File

@@ -32,44 +32,44 @@ https://gitlab.gnome.org/GNOME/gnome-remote-desktop
1. The code for Bitcoin Core is as follows: 1. The code for Bitcoin Core is as follows:
```nix ```nix
sovran_systemsOS.features.bitcoin-core = true; sovran_systemsOS.features.bitcoin-core = lib.mkForce true;
``` ```
2. The code for BIP-110 is as follows: 2. The code for BIP-110 is as follows:
```nix ```nix
sovran_systemsOS.features.bip110 = true; sovran_systemsOS.features.bip110 = lib.mkForce true;
``` ```
3. The code for Mempool is as follows: 3. The code for Mempool is as follows:
```nix ```nix
sovran_systemsOS.features.mempool = true; sovran_systemsOS.features.mempool = lib.mkForce true;
``` ```
4. The code for Haven Relay is as follows: 4. The code for Haven Relay is as follows:
```nix ```nix
sovran_systemsOS.features.haven = true; sovran_systemsOS.features.haven = lib.mkForce true;
``` ```
5. The code for Element Calling is as follows: 5. The code for Element Calling is as follows:
```nix ```nix
sovran_systemsOS.features.element-calling = true; sovran_systemsOS.features.element-calling = lib.mkForce true;
``` ```
6. The code for Gnome Remote Desktop is as follows: 6. The code for Gnome Remote Desktop is as follows:
```nix ```nix
sovran_systemsOS.features.rdp = true; sovran_systemsOS.features.rdp = lib.mkForce true;
``` ```
Next in a new termianl window paste this in: Next in a new termianl window paste this in:
```bash ```bash
ssh root@localhost ssh root@localhost
``` ```
Type in password for if required it is the password to run the Sovran_SystemsOS_Updater app Type in the password if required. It will be the same password to run the Sovran_SystemsOS_Updater app.
Next paste in these commands and make sure you add your own username and password Next paste in these commands and make sure you add your own username and password
```bash ```bash

View File

@@ -1,6 +1,6 @@
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
config.sovran_systemsOS.features.rdp { lib.mkIf config.sovran_systemsOS.features.rdp {
services.gnome.gnome-remote-desktop.enable = true; services.gnome.gnome-remote-desktop.enable = true;