a260ae2470
treefmt / nix fmt (pull_request) Successful in 7s
build_systems / build-bob (pull_request) Successful in 32s
pytest / pytest (pull_request) Successful in 26s
build_systems / build-brain (pull_request) Successful in 44s
build_systems / build-leviathan (pull_request) Successful in 55s
build_systems / build-rhapsody-in-green (pull_request) Successful in 1m30s
build_systems / build-jeeves (pull_request) Successful in 2m40s
treefmt / nix fmt (push) Successful in 6s
build_systems / build-bob (push) Successful in 33s
build_systems / build-brain (push) Successful in 34s
pytest / pytest (push) Successful in 26s
build_systems / build-leviathan (push) Successful in 44s
build_systems / build-rhapsody-in-green (push) Successful in 45s
build_systems / build-jeeves (push) Successful in 2m21s
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
"${inputs.self}/users/richie"
|
|
"${inputs.self}/common/global"
|
|
"${inputs.self}/common/optional/desktop.nix"
|
|
"${inputs.self}/common/optional/docker.nix"
|
|
"${inputs.self}/common/optional/steam.nix"
|
|
"${inputs.self}/common/optional/syncthing_base.nix"
|
|
"${inputs.self}/common/optional/systemd-boot.nix"
|
|
"${inputs.self}/common/optional/yubikey.nix"
|
|
"${inputs.self}/common/optional/zerotier.nix"
|
|
./hardware.nix
|
|
./open_webui.nix
|
|
./programs.nix
|
|
./qmk.nix
|
|
./syncthing.nix
|
|
inputs.nixos-hardware.nixosModules.framework-13-7040-amd
|
|
];
|
|
|
|
networking = {
|
|
hostName = "rhapsody-in-green";
|
|
hostId = "6404140d";
|
|
firewall = {
|
|
enable = true;
|
|
allowedTCPPorts = [
|
|
8000
|
|
8080
|
|
8081
|
|
];
|
|
};
|
|
networkmanager.enable = true;
|
|
};
|
|
|
|
programs.appimage = {
|
|
enable = true;
|
|
binfmt = true; # allows *.AppImage to be run directly
|
|
};
|
|
|
|
services = {
|
|
openssh.ports = [ 922 ];
|
|
flatpak.enable = true;
|
|
};
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|