diff options
Diffstat (limited to 'hosts/local/fw11/configuration.nix')
-rw-r--r-- | hosts/local/fw11/configuration.nix | 38 |
1 files changed, 22 insertions, 16 deletions
diff --git a/hosts/local/fw11/configuration.nix b/hosts/local/fw11/configuration.nix index 197e8ca..69b51a2 100644 --- a/hosts/local/fw11/configuration.nix +++ b/hosts/local/fw11/configuration.nix @@ -5,19 +5,21 @@ inputs, pkgs, ... -}: let - wrappers = - inputs.wrapper-manager.lib.build - { - inherit pkgs; - modules = [ - ../../../wrappers/chromium - ../../../wrappers/brave - ../../../wrappers/zellij - ../../../wrappers/alacritty - ]; - }; -in { +}: +# let +# wrappers = +# inputs.wrapper-manager.lib.build +# { +# inherit pkgs; +# modules = [ +# ../../../wrappers/chromium +# ../../../wrappers/brave +# ../../../wrappers/zellij +# ../../../wrappers/alacritty +# ]; +# }; +# in +{ imports = [ # Include the results of the hardware scan. ../../base.nix @@ -29,9 +31,9 @@ in { # ../android.nix ]; - environment.systemPackages = [ - wrappers - ]; + # environment.systemPackages = [ + # wrappers + # ]; environment = { etc = { "sway/config".source = ./swayconfig; @@ -76,6 +78,10 @@ in { services.logind.lidSwitchDocked = "ignore"; services.logind.lidSwitch = "ignore"; + services.tailscale = { + enable = true; + useRoutingFeatures = "both"; + }; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave |