From 7bf62c3ae65eaa7949614a282f72074fdf2721f0 Mon Sep 17 00:00:00 2001 From: FreeCorn Date: Sun, 29 Sep 2024 02:37:29 -0600 Subject: [PATCH] =?UTF-8?q?i=20forgor=20=F0=9F=92=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- configuration.nix | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/configuration.nix b/configuration.nix index 6b4fd27..32b0cb9 100644 --- a/configuration.nix +++ b/configuration.nix @@ -94,7 +94,19 @@ in # fonts.packages = with pkgs; [ # orbitron # ]; - + +# systemd.services.rtl_tcp = { +# enable = true; +# description = "rtl_tcp"; +# unitConfig = { +# Type = "simple"; +# # ... +# }; +# serviceConfig = { +# ExecStart = "rtl_tcp -a 10.0.0.240"; +# # ... +# }; +#} # Define a users and groups users = { @@ -306,12 +318,12 @@ in }; # NFS server - services.nfs.server = { - enable = true; - exports = '' - /export/freecornNFS *(rw,no_subtree_check) - ''; - }; +# services.nfs.server = { +# enable = true; +# exports = '' +# /export/freecornNFS *(rw,no_subtree_check) +# ''; +# }; # Copy and link the NixOS configuration file to (/run/current-system/configuration.nix). system.copySystemConfiguration = true;