NixOS-Configs/hosts/fred/default.nix
2024-11-24 12:01:36 -06:00

31 lines
531 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
inputs.catppuccin.nixosModules.catppuccin
./hardware-configuration.nix
../server
../themes.nix
# ./podman.nix
../server/searxng.nix
# ../server/unifi.nix
];
networking.hostName = "fred";
boot = {
binfmt.emulatedSystems = ["aarch64-linux"];
loader = {
systemd-boot = {
enable = true;
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
};
};
}