diff --git a/hosts/jibril/host.nix b/hosts/jibril/host.nix index e012354..2778816 100644 --- a/hosts/jibril/host.nix +++ b/hosts/jibril/host.nix @@ -27,7 +27,10 @@ tuigreet.enable = true; hyprland.enable = true; + tailscale.enable = true; shell.enabledShells = [ "fish" ]; shell.defaultShell = "fish"; + + steam.enable = true; } diff --git a/nixosModules/apps/tailscale/app.nix b/nixosModules/apps/tailscale/app.nix new file mode 100644 index 0000000..37dcc9f --- /dev/null +++ b/nixosModules/apps/tailscale/app.nix @@ -0,0 +1,11 @@ +{ config, lib, ... }: + +{ + options.tailscale = { + enable = lib.mkEnableOption "Enables tailscale"; + }; + + config = lib.mkIf config.tailscale.enable { + services.tailscale.enable = true; + }; +}