Files
vargix-os/game-serv.nix
Kurtis Andrews 7b30bcfa5c Update
Updated script to allow for upgrade to 24.05
2024-06-29 16:29:15 +10:00

27 lines
627 B
Nix

{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
/etc/nixos/hardware-configuration.nix
./components/base-server.nix
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "game-serv"; # Define your hostname.
users.users.kurtisa = {
isNormalUser = true;
description = "Kurtis Andrews";
extraGroups = [ "networkmanager" "wheel" "docker"];
shell = pkgs.fish;
};
# Docker
virtualisation.docker.enable = true;
system.stateVersion = "24.5"; # Did you read the comment?
}