meow
This commit is contained in:
parent
afa20e47af
commit
1f4d042c38
4 changed files with 115 additions and 10 deletions
|
@ -12,8 +12,17 @@
|
|||
./proxy.nix
|
||||
./vaultwarden.nix
|
||||
./nextcloud.nix
|
||||
./mumble.nix
|
||||
];
|
||||
|
||||
#systemd.services.wordsofgod-bot.enable = true;
|
||||
|
||||
systemd.services.wordsofgod-bot = {
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
serviceConfig.ExecStart = "${inputs.wordsofgod.packages."x86_64-linux".default}/bin/wordsofgod";
|
||||
serviceConfig.EnvironmentFile = "/etc/wordsofgod-bot/wordsofgod.env";
|
||||
};
|
||||
|
||||
jade = {
|
||||
neovim.enable = true;
|
||||
zsh.enable = true;
|
||||
|
@ -24,6 +33,8 @@
|
|||
boot.loader.grub.version = 2;
|
||||
boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
|
||||
|
||||
environment.systemPackages = [ inputs.wordsofgod ];
|
||||
|
||||
networking.hostName = "schrottserver"; # Define your hostname.
|
||||
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
||||
|
||||
|
|
8
schrottserver/mumble.nix
Normal file
8
schrottserver/mumble.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [ murmur ];
|
||||
services.murmur = {
|
||||
enable = true;
|
||||
registerHostname = "mumble.schrottkatze.de";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue