mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-06 07:36:23 +01:00
53 lines
1.5 KiB
Nix
53 lines
1.5 KiB
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{ inputs, config, pkgs, ... }:
|
||
|
||
{
|
||
imports =
|
||
[ # Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
../common.nix
|
||
./proxy.nix
|
||
./vaultwarden.nix
|
||
./nextcloud.nix
|
||
./mumble.nix
|
||
./microbin.nix
|
||
../modules/neovim.nix
|
||
../modules/zsh.nix
|
||
./synapse.nix
|
||
./penpot.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;
|
||
};
|
||
|
||
# Use the GRUB 2 boot loader.
|
||
boot.loader.grub.enable = true;
|
||
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.
|
||
|
||
networking.firewall.enable = false;
|
||
|
||
# default settings for stateful data; don't change unless reinstall with newer version
|
||
system.stateVersion = "22.11"; # Did you read the comment?
|
||
|
||
}
|
||
|