sneeuwvlok/hosts/chris-server/default.nix
Chris Kruining 1362d6d3c6 woo, got the server working
only thing to figure out now is how to install tekxit and fix the dns
2025-03-04 23:36:00 +01:00

52 lines
853 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ./hardware.nix ];
fileSystems."/var/media_from_conf" = {
device = "/dev/disk/by-label/data";
fsType = "ext4";
};
networking.hostName = "chris-server";
modules = {
themes = {
enable = true;
theme = "everforest";
polarity = "dark";
};
networking.enable = true;
networking.ssh.enable = true;
services = {
enable = true;
media.enable = true;
games = {
minecraft.enable = true;
};
};
desktop = {
type = "wayland";
plasma.enable = true;
terminal = {
default = "alacritty";
alacritty.enable = true;
};
editors = {
default = "nano";
nano.enable = true;
};
};
shell = {
default = "zsh";
corePkgs.enable = true;
};
};
}