flakes/hosts/anemone/default.nix

45 lines
772 B
Nix
Raw Normal View History

2024-01-17 15:40:02 +07:00
{ config, inputs, modules, overlays, pkgs, ... }: {
networking.hostName = "anemone";
system.stateVersion = "23.11";
2024-02-19 11:39:58 +07:00
time.timeZone = "Australia/Melbourne";
2024-01-17 15:40:02 +07:00
nixpkgs.overlays = [ inputs.neovim-nightly.overlays.default ];
2024-01-17 15:40:02 +07:00
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"
];
}