universe/hosts/Infini-DESKTOP/default.nix
2023-03-30 12:29:47 -04:00

46 lines
1,016 B
Nix

{ suites, profiles, pkgs, lib, ... }: {
imports = lib.our.flattenListSet {
suites = with suites; [ graphic develop ];
imports = [ ./hardware-configuration.nix ];
profiles = with profiles; [
boot.systemd-boot
networking.wireless
hardware.sound
hardware.gpu.nvidia
# peripherals.printing
];
};
system.stateVersion = "21.05";
networking.interfaces = {
eth0.useDHCP = true;
wlp41s0.useDHCP = true;
};
home-manager.users.infinidoge = { profiles, ... }: {
imports = with profiles; [ stretchly ];
};
# services.minecraft-servers = {
# enable = true;
# openFirewall = true;
# servers = {
# test = {
# enable = true;
# eula = true;
# # declarative = true;
# # serverProperties.server-port = 25565;
# };
# # test2 = {
# # enable = true;
# # eula = true;
# # declarative = true;
# # serverProperties.server-port = 25566;
# # };
# };
# };
}