flakes/hosts/hyacinth/default.nix

51 lines
1 KiB
Nix
Raw Permalink 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
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
nixpkgs.overlays = [ inputs.neovim-nightly.overlays.default ];
2023-01-28 00:12:28 +07:00
age.secrets = {
passwd.file = ../../secrets/passwd.age;
wg_hyacinth.file = ../../secrets/wg_blossom.age;
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
2023-09-26 20:42:01 +07:00
virtualisation
2023-01-28 00:12:28 +07:00
2023-08-18 20:21:36 +07:00
modules.services.postgres
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
];
2023-08-18 20:21:36 +07:00
services.postgresql.ensureDatabases = [ "barista" "barista-dev" ];
2024-06-11 21:15:56 +10:00
systemd.services.nix-daemon.environment.TMPDIR = "/nix/tmp";
2023-09-26 20:42:01 +07:00
# For steam fhs-env
nixpkgs.config.permittedInsecurePackages = [
"openssl-1.1.1w"
];
2023-01-28 00:12:28 +07:00
}