hosts/hyacinth: init
This commit is contained in:
parent
1d770f1678
commit
f8952fc47e
8 changed files with 130 additions and 6 deletions
41
hosts/hyacinth/default.nix
Normal file
41
hosts/hyacinth/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue