flakes/hosts/anemone/default.nix

53 lines
940 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; [
home-manager
audio
base
bluetooth
ccache
corectrl
flatpak
2024-07-24 13:15:10 +10:00
greetd_wayland
2024-01-17 15:40:02 +07:00
gui
input
kernel
nix
packages
printing
security
snapper
./filesystem.nix
./kernel.nix
./networking.nix
../../users/rin/wayland.nix
2024-01-17 15:40:02 +07:00
];
programs.hyprland.enable = true;
2025-03-17 15:16:11 +11:00
security.pam.services.hyprlock = {};
2024-01-17 15:40:02 +07:00
# For steam fhs-env
nixpkgs.config.permittedInsecurePackages = [
"openssl-1.1.1w"
];
2025-03-10 12:33:59 +11:00
programs.wireshark = {
enable = true;
package = pkgs.wireshark;
};
2025-03-16 01:19:23 +11:00
2025-03-17 16:20:47 +11:00
services.fprintd.enable = true;
2025-03-16 01:19:23 +11:00
services.tlp.enable = true;
2024-01-17 15:40:02 +07:00
}