mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-10-02 06:54:49 +02:00
11 lines
181 B
Nix
11 lines
181 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./nh.nix
|
|
./tailscale.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
inputs.zen-browser.packages."${system}".default
|
|
];
|
|
}
|