flakes/hosts/anemone/default.nix
2024-01-15 23:01:29 +07:00

47 lines
929 B
Nix

{ config, inputs, modules, overlays, pkgs, ... }: {
networking.hostName = "anemone";
system.stateVersion = "23.11";
time.timeZone = "Asia/Phnom_Penh";
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
ccache
corectrl
flatpak
greetd
gui
input
kernel
nix
packages
printing
security
snapper
#wireguard
./filesystem.nix
./kernel.nix
./networking.nix
../../users/rin
];
environment.systemPackages = with pkgs; [ wpa_supplicant_gui ];
programs.hyprland.enable = true;
# For steam fhs-env
nixpkgs.config.permittedInsecurePackages = [
"openssl-1.1.1w"
];
}