Files
nix-config/systems/aarch64-linux/pi5/default.nix
mjallen18 a6167bf31c stuff
2025-09-02 19:23:08 -05:00

36 lines
688 B
Nix

# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{
namespace,
...
}:
{
imports = [
./boot.nix
./services.nix
./sops.nix
];
${namespace} = {
impermanence.enable = true;
hardware = {
disko.enable = true;
raspberry-pi = {
enable = true;
variant = "5";
};
};
desktop.hyprland.enable = false;
user = {
name = "matt";
mutableUsers = false;
extraGroups = [ "docker" ];
};
network = {
hostName = "pi5";
};
};
}