flakes/hosts/hyacinth/default.nix

46 lines
878 B
Nix
Raw Normal View History

2023-01-28 00:12:28 +07:00
{ config, inputs, modules, overlays, pkgs, ... }: {
networking.hostName = "hyacinth";
system.stateVersion = "21.11";
time.timeZone = "Australia/Melbourne";
2023-01-28 00:12:28 +07: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
aagl
2023-01-28 00:12:28 +07:00
audio
base
2024-12-07 22:58:14 +11:00
bluetooth
ccache
2023-09-26 20:42:01 +07:00
corectrl
flatpak
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
2025-05-26 17:22:24 +10:00
wireguard
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
./packages.nix
2023-01-28 00:12:28 +07: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";
2025-04-24 23:49:37 +10:00
services.jenkins.enable = true;
2023-01-28 00:12:28 +07:00
}