treefmt / nix fmt (pull_request) Successful in 4s
build_systems / build-portal-1 (pull_request) Successful in 27s
build_systems / build-brain (pull_request) Successful in 48s
build_systems / build-bob (pull_request) Successful in 52s
build_systems / build-jeeves (pull_request) Successful in 53s
build_systems / build-rhapsody-in-green (pull_request) Successful in 1m4s
pytest / pytest (pull_request) Successful in 1m17s
test ebook search / test-ebook-search (pull_request) Successful in 1m21s
build_systems / build-brain (push) Successful in 34s
build_systems / build-jeeves (push) Successful in 44s
build_systems / build-rhapsody-in-green (push) Successful in 50s
pytest / pytest (push) Successful in 1m1s
treefmt / nix fmt (push) Successful in 2s
build_systems / build-portal-1 (push) Successful in 22s
build_systems / build-bob (push) Successful in 38s
test ebook search / test-ebook-search (push) Successful in 1m15s
47 lines
1.1 KiB
Nix
47 lines
1.1 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/tailscale.nix"
|
|
"${inputs.self}/common/optional/yubikey.nix"
|
|
"${inputs.self}/common/optional/zfs"
|
|
./hardware.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";
|
|
}
|