hosts/hyacinth: init

This commit is contained in:
LavaDesu 2023-01-28 00:12:28 +07:00
parent 1d770f1678
commit f8952fc47e
Signed by: cilly
GPG key ID: 6500251E087653C9
8 changed files with 130 additions and 6 deletions

View file

@ -0,0 +1,41 @@
{ config, inputs, modules, overlays, pkgs, ... }: {
networking.hostName = "hyacinth";
system.stateVersion = "21.11";
time.timeZone = "Asia/Phnom_Penh";
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
nixpkgs.overlays = [ inputs.neovim-nightly.overlay ];
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; [
inputs.home-manager.nixosModule
home-manager
audio
base
greetd
gui
input
kernel
nix
packages
security
snapper
wireguard
./filesystem.nix
./kernel.nix
./networking.nix
../../users/rin
];
programs.corectrl.enable = true;
services.murmur = {
enable = true;
openFirewall = true;
};
}