Compare commits

...

2 commits

Author SHA1 Message Date
cb2e73007f
Upgrade to Minecraft 1.21.6
Requested-By: Jacob
2025-06-19 22:44:06 -05:00
adab62337d
bigbird: Add disabled Eric user; reorg users 2025-06-06 17:52:58 -05:00
4 changed files with 15 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{
services.minecraft-server = {
enable = true;
package = (import <nixpkgs> {
package = (import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/058b28c40c1210cb16233f443dc6a4c850670f21.tar.gz") {
config.allowUnfree = true;
}).minecraft-server;
declarative = true;

View file

@ -5,8 +5,9 @@
# <nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix>
./hardware-configuration.nix
./backups.nix
./kathe.nix
./smb.nix
./users/eric.nix
./users/kathe.nix
];
# Use the extlinux boot loader. (NixOS wants to enable GRUB by default)

12
bigbird/users/eric.nix Normal file
View file

@ -0,0 +1,12 @@
{pkgs, ...}: {
# users.users.eric = {
# isNormalUser = true;
# description = "Eric Villnow";
# openssh.authorizedKeys.keys = [
# "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBKTAtIfDbYG2Wvwc0dmzXJXWwRnI1QFzFf7P9Txj9zo eric@vill.now"
# ];
# packages = with pkgs; [
# #
# ];
# };
}