[pi4] Tailscale, just, nh, experimentals, fish in module

This commit is contained in:
Martin Berg Alstad 2025-04-15 23:44:15 +02:00
parent 22ab5aa5cf
commit 5a23b66666
Signed by: martials
GPG Key ID: 706F53DD087A91DE
3 changed files with 20 additions and 1 deletions

View File

@ -1,11 +1,16 @@
{ {
lib,
systemConfig, systemConfig,
... ...
}: }:
{ {
imports = [ imports = [
(lib.custom.relativeToRoot "shared/nix-helper.nix")
(lib.custom.relativeToRoot "shared/nixos.nix")
(lib.custom.relativeToRoot "shared/shell.nix")
./boot.nix ./boot.nix
./development.nix
./hardware.nix ./hardware.nix
./networking.nix ./networking.nix
./security.nix ./security.nix

11
hosts/pi4/development.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Tools
just
# Formatters
treefmt
shfmt
];
}

View File

@ -6,5 +6,8 @@
networkmanager.enable = true; networkmanager.enable = true;
}; };
services.openssh.enable = true; services = {
openssh.enable = true;
tailscale.enable = true;
};
} }