nixos-configs/machines/gamepc/configuration.nix

124 lines
2.6 KiB
Nix
Raw Permalink Normal View History

2024-11-07 19:47:40 +00:00
{
2024-11-11 19:43:36 +00:00
config,
lib,
...
}: {
2024-11-11 19:43:36 +00:00
config = {
pim = {
cinnamon.enable = true;
2024-12-01 16:15:01 +00:00
sops-nix.usersWithSopsKeys = ["pim"];
2024-11-11 19:43:36 +00:00
};
facter.reportPath = ./facter.json;
home-manager.users.pim.imports = [./pim.home.nix];
2024-11-13 22:03:23 +00:00
programs.steam.enable = true;
2024-11-30 12:14:46 +00:00
system.stateVersion = "24.05";
2024-11-11 19:43:36 +00:00
2024-11-19 21:08:41 +00:00
users.users = {
root.openssh.authorizedKeys.keys = config.pim.ssh.keys.pim;
pim = {
isNormalUser = true;
extraGroups = ["autologin"];
2024-11-19 21:08:41 +00:00
openssh.authorizedKeys.keys = config.pim.ssh.keys.pim;
};
};
deployment = {
targetHost = "gamepc";
targetUser = "root";
2024-11-19 21:08:41 +00:00
tags = ["desktop"];
};
services = {
openssh.enable = true;
xserver.displayManager.lightdm.extraSeatDefaults = ''
autologin-user=pim
'';
sunshine = {
enable = true;
openFirewall = true;
settings = {
sunshine_name = config.networking.hostName;
origin_web_ui_allowed = "wan";
credentials_file = "/home/pim/.config/sunshine/sunshine_credentials.json";
};
};
};
2024-11-11 19:43:36 +00:00
boot.loader.grub = {
enable = true;
efiSupport = true;
efiInstallAsRemovable = true;
};
disko.devices.disk = lib.genAttrs ["0" "1"] (name: {
type = "disk";
device = "/dev/nvme${name}n1";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
ESP = {
size = "500M";
type = "EF00";
content = {
type = "mdraid";
name = "boot";
};
};
mdadm = {
size = "100%";
content = {
type = "mdraid";
name = "raid0";
};
};
};
};
});
disko.devices.mdadm = {
boot = {
type = "mdadm";
level = 1;
metadata = "1.0";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
raid0 = {
type = "mdadm";
level = 0;
content = {
type = "gpt";
partitions = {
primary = {
end = "-4G";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
swap = {
size = "100%";
content = {
type = "swap";
};
};
};
};
};
};
};
2024-11-07 19:47:40 +00:00
}