add tailscale (and helium?)
This commit is contained in:
parent
92b6ce1644
commit
8a501b6d04
2 changed files with 14 additions and 0 deletions
|
|
@ -8,6 +8,10 @@
|
|||
flake.nixosModules.development =
|
||||
{ pkgs, lib, ... }:
|
||||
{
|
||||
imports = [
|
||||
self.nixosModules.tailscale
|
||||
];
|
||||
|
||||
config = {
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
|
|
|
|||
10
modules/features/tailscale.nix
Normal file
10
modules/features/tailscale.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{ self, inputs, ... }:
|
||||
{
|
||||
flake.nixosModules.tailscale =
|
||||
{ pkgs, lib, ... }:
|
||||
{
|
||||
config = {
|
||||
services.tailscale.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue