mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 16:17:46 +00:00
71 lines
1.8 KiB
Nix
71 lines
1.8 KiB
Nix
{ config, lib, pkgs, inputs, system, ... }:
|
|
let
|
|
cfg = config.mods;
|
|
|
|
in {
|
|
# Hardware
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
# System
|
|
mods.user.name = "muon";
|
|
networking.hostName = "mups";
|
|
mods.home.file = ./home.nix;
|
|
|
|
# Modules
|
|
mods.desktop.enable = false;
|
|
|
|
mods.theme.enable = true;
|
|
mods.theme.scheme = "woodland";
|
|
mods.theme.wallpaper = ./wallpaper.png;
|
|
|
|
mods.tailscale.enable = true;
|
|
|
|
mods.unfree.minecraft.enable = false;
|
|
mods.server.astral.enable = false;
|
|
mods.server.astral.memory = "3G";
|
|
|
|
mods.server.sync.enable = true;
|
|
mods.server.sync.address = "100.85.27.29";
|
|
mods.server.sync.port = "8385";
|
|
|
|
mods.server.media.enable = true;
|
|
mods.server.photoprism.enable = true;
|
|
|
|
mods.server.wireguard.enable = true;
|
|
|
|
# Use the GRUB 2 boot loader.
|
|
boot.loader.grub.enable = true;
|
|
boot.loader.grub.device = "/dev/vda";
|
|
boot.initrd.checkJournalingFS = false;
|
|
|
|
users.users.muon = {
|
|
openssh.authorizedKeys.keys =
|
|
[''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKEio+Y5wBVD1wILaH2R3wV10FvVjiqy/4gGBWHOITTB muon@muon'' ''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKevYmkH7xvYoquBjnYZ7PJiVqf+GOh9fxAJBN6wZGBB gin4@hi.is'' ];
|
|
};
|
|
|
|
# services.static-web-server = {
|
|
# enable = true;
|
|
# listen = "[::]:80";
|
|
# root = "/var/www";
|
|
# configuration = {
|
|
# general = {
|
|
# directory-listing = true;
|
|
# };
|
|
# };
|
|
# };
|
|
|
|
# Enable the OpenSSH daemon.
|
|
services.openssh.enable = true;
|
|
users.users.root.openssh.authorizedKeys.keys =
|
|
[''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKEio+Y5wBVD1wILaH2R3wV10FvVjiqy/4gGBWHOITTB muon@muon'' ''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKevYmkH7xvYoquBjnYZ7PJiVqf+GOh9fxAJBN6wZGBB gin4@hi.is'' ];
|
|
|
|
networking.firewall = {
|
|
enable = true;
|
|
allowedTCPPorts = [ 80 8080 ];
|
|
};
|
|
|
|
system.stateVersion = "24.05"; # Did you read the comment?
|
|
}
|
|
|