58 lines
1.2 KiB
Nix
58 lines
1.2 KiB
Nix
{
|
|
tree,
|
|
modulesPath,
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
secrets = config.services.secrets.secrets;
|
|
in {
|
|
imports = with tree;
|
|
[
|
|
users.root
|
|
users.chaos
|
|
|
|
profiles.base
|
|
profiles.sshd
|
|
|
|
profiles.connectivity.network_manager
|
|
profiles.connectivity.bluetooth
|
|
profiles.connectivity.ios
|
|
|
|
./secrets.nix
|
|
|
|
./boot.nix
|
|
(modulesPath + "/installer/sd-card/sd-image.nix")
|
|
]
|
|
++ (with hosts.raspberry.profiles; [
|
|
external-drive
|
|
]);
|
|
|
|
environment.systemPackages = [
|
|
(pkgs.writeShellScriptBin "vault-login" ''
|
|
${pkgs.vault-bin}/bin/vault login -method=userpass username=raspberry password=$(cat ${secrets.vault_login_password.path})
|
|
'')
|
|
];
|
|
|
|
home-manager.users.root = {
|
|
imports = with tree; [home.base home.dev.small];
|
|
home.stateVersion = "23.05";
|
|
};
|
|
|
|
home-manager.users.chaos = {
|
|
imports = with tree; [home.base home.dev.small];
|
|
home.stateVersion = "23.05";
|
|
};
|
|
|
|
boot.supportedFilesystems = lib.mkForce ["vfat"];
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
networking.hostName = "raspberry";
|
|
time.timeZone = "Europe/London";
|
|
|
|
sdImage.compressImage = lib.mkForce false;
|
|
|
|
system.stateVersion = "21.11";
|
|
}
|