Compare commits

..

No commits in common. "b3532e1abcc833a5f7e2e512774bc0ed2dce9f32" and "59b31094498f92a5b062f1bf7634f8505d175e1a" have entirely different histories.

3 changed files with 1 additions and 12 deletions

View file

@ -6,6 +6,5 @@
./gaming.nix
./stylix.nix
./ollama.nix
./sdr.nix
];
}

View file

@ -1,5 +1,4 @@
{ config, lib, ... }:
{
{ config, lib, ... }: {
options.nfs.client.enable = lib.mkEnableOption "Enable Nas (via NFS) as a client";
# options.nfs.server.enable = lib.mkEnableOption "Enable Nas (via NFS) as the server";

View file

@ -1,9 +0,0 @@
{ config, lib, ... }:
{
options.sdr.enable = lib.mkEnableOption "Enable rtl-sdr";
config = lib.mkIf config.sdr.enable {
hardware.rtl-sdr.enable = true;
users.users."lilith".extraGroups = [ "plugdev" ];
};
}