diff options
Diffstat (limited to 'host/Rory-discordbots')
-rw-r--r-- | host/Rory-discordbots/configuration.nix | 4 | ||||
-rw-r--r-- | host/Rory-discordbots/services.nix | 17 |
2 files changed, 2 insertions, 19 deletions
diff --git a/host/Rory-discordbots/configuration.nix b/host/Rory-discordbots/configuration.nix index f5a72cc..a4d9d86 100644 --- a/host/Rory-discordbots/configuration.nix +++ b/host/Rory-discordbots/configuration.nix @@ -25,8 +25,8 @@ } ]; }; - sound.enable = true; - hardware.pulseaudio.enable = true; + sound.enable = false; + hardware.pulseaudio.enable = false; system.stateVersion = "22.11"; # DO NOT EDIT! } diff --git a/host/Rory-discordbots/services.nix b/host/Rory-discordbots/services.nix deleted file mode 100644 index 48fa320..0000000 --- a/host/Rory-discordbots/services.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ config, pkgs, lib, ... }: - -{ - systemd.services."botcore.bot@" = { - description = "foo"; - wantedBy = [ "multi-user.target" ]; - serviceConfig = { - Type = "simple"; - ExecStart = "${pkgs.foo}/bin/foo"; - User = "foo"; - Group = "foo"; - Restart = "always"; - RestartSec = "5s"; - }; - }; -} - |