2023-01-28 00:12:28 +07:00
|
|
|
{ config, inputs, modules, overlays, pkgs, ... }: {
|
|
|
|
|
networking.hostName = "hyacinth";
|
|
|
|
|
system.stateVersion = "21.11";
|
2024-03-24 14:18:13 +11:00
|
|
|
time.timeZone = "Australia/Melbourne";
|
2023-01-28 00:12:28 +07:00
|
|
|
|
|
|
|
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
2024-06-25 15:54:38 +10:00
|
|
|
nixpkgs.overlays = [ inputs.neovim-nightly.overlays.default ];
|
2023-01-28 00:12:28 +07:00
|
|
|
age.secrets = {
|
|
|
|
|
passwd.file = ../../secrets/passwd.age;
|
2025-05-22 23:43:56 +10:00
|
|
|
wg_hyacinth.file = ../../secrets/wg_hyacinth.age;
|
2023-01-28 00:12:28 +07:00
|
|
|
wpa_conf.file = ../../secrets/wpa_conf.age;
|
|
|
|
|
};
|
|
|
|
|
imports = with modules.system; [
|
|
|
|
|
home-manager
|
|
|
|
|
|
2025-01-03 18:39:05 +11:00
|
|
|
aagl
|
2023-01-28 00:12:28 +07:00
|
|
|
audio
|
|
|
|
|
base
|
2024-12-07 22:58:14 +11:00
|
|
|
bluetooth
|
2023-08-24 20:18:35 +07:00
|
|
|
ccache
|
2023-09-26 20:42:01 +07:00
|
|
|
corectrl
|
|
|
|
|
flatpak
|
2025-03-23 00:29:58 +11:00
|
|
|
greetd
|
2023-01-28 00:12:28 +07:00
|
|
|
gui
|
|
|
|
|
input
|
|
|
|
|
kernel
|
|
|
|
|
nix
|
|
|
|
|
packages
|
2023-09-26 20:42:01 +07:00
|
|
|
printing
|
2023-01-28 00:12:28 +07:00
|
|
|
security
|
|
|
|
|
snapper
|
2023-09-26 20:42:01 +07:00
|
|
|
virtualisation
|
2023-01-28 00:12:28 +07:00
|
|
|
|
2025-04-24 22:40:09 +10:00
|
|
|
modules.services.syncthing
|
|
|
|
|
|
2023-01-28 00:12:28 +07:00
|
|
|
./filesystem.nix
|
|
|
|
|
./kernel.nix
|
|
|
|
|
./networking.nix
|
2025-03-15 01:20:55 +11:00
|
|
|
./packages.nix
|
2023-01-28 00:12:28 +07:00
|
|
|
|
2025-03-23 00:29:58 +11:00
|
|
|
../../users/rin
|
2023-01-28 00:12:28 +07:00
|
|
|
];
|
2024-06-11 21:15:56 +10:00
|
|
|
systemd.services.nix-daemon.environment.TMPDIR = "/nix/tmp";
|
2023-08-06 20:40:40 +07:00
|
|
|
|
2025-04-24 23:49:37 +10:00
|
|
|
services.jenkins.enable = true;
|
2023-01-28 00:12:28 +07:00
|
|
|
}
|