add tailscale (and helium?)

This commit is contained in:
jackjohn7 2026-05-02 12:34:03 -05:00
parent 92b6ce1644
commit 8a501b6d04
2 changed files with 14 additions and 0 deletions

View file

@ -8,6 +8,10 @@
flake.nixosModules.development =
{ pkgs, lib, ... }:
{
imports = [
self.nixosModules.tailscale
];
config = {
environment.systemPackages = with pkgs; [
vim

View file

@ -0,0 +1,10 @@
{ self, inputs, ... }:
{
flake.nixosModules.tailscale =
{ pkgs, lib, ... }:
{
config = {
services.tailscale.enable = true;
};
};
}