hosts/anemone: init

This commit is contained in:
LavaDesu 2024-01-17 15:40:02 +07:00
parent 1ba66868be
commit 1700e735f6
Signed by: cilly
GPG key ID: 6500251E087653C9
5 changed files with 143 additions and 0 deletions

44
hosts/anemone/default.nix Normal file
View file

@ -0,0 +1,44 @@
{ 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;
};
imports = with modules.system; [
inputs.home-manager.nixosModule
home-manager
audio
base
bluetooth
ccache
corectrl
flatpak
greetd
gui
input
kernel
nix
packages
printing
security
snapper
./filesystem.nix
./kernel.nix
./networking.nix
../../users/rin
];
programs.hyprland.enable = true;
# For steam fhs-env
nixpkgs.config.permittedInsecurePackages = [
"openssl-1.1.1w"
];
}