mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
add tailscale
This commit is contained in:
parent
e85ece0859
commit
d790d3ba3e
|
@ -6,6 +6,7 @@ modulesCfg: {lib, ...}: {
|
|||
./globalinstalls.nix
|
||||
./server.nix
|
||||
./sshd.nix
|
||||
./tailscale.nix
|
||||
]
|
||||
++ (map (path: (import path modulesCfg)) [
|
||||
./hardware
|
||||
|
|
|
@ -63,6 +63,11 @@ in {
|
|||
};
|
||||
};
|
||||
}
|
||||
(lib.mkIf config.my.tailscale.enable
|
||||
{
|
||||
home.packages = with pkgs.gnomeExtensions; [tailscale-qs];
|
||||
dconf.settings."org/gnome/shell".enabled-extensions = ["tailscale@joaophi.github.com"];
|
||||
})
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
19
modules/tailscale.nix
Normal file
19
modules/tailscale.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
cfg = config.my.tailscale;
|
||||
in {
|
||||
options.my.tailscale = {
|
||||
enable = lib.mkEnableOption "enable tailscale vpn";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
services.tailscale = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -9,6 +9,7 @@
|
|||
config = {
|
||||
my = {
|
||||
enabledUsers = ["vinzenz"];
|
||||
tailscale.enable = true;
|
||||
desktop = {
|
||||
enableGnome = true;
|
||||
enableGaming = true;
|
||||
|
|
Loading…
Reference in a new issue