tailscale fix???

This commit is contained in:
Tao Tien 2024-04-25 14:05:35 -07:00
parent fa94214498
commit 311bafce0b
3 changed files with 9 additions and 6 deletions

View file

@ -128,6 +128,11 @@
DefaultTimeoutStopSec=15s DefaultTimeoutStopSec=15s
''; '';
zramSwap = {
enable = true;
algorithm = "zstd";
};
boot.loader.systemd-boot.enable = lib.mkDefault true; boot.loader.systemd-boot.enable = lib.mkDefault true;
boot.loader.efi.canTouchEfiVariables = lib.mkDefault true; boot.loader.efi.canTouchEfiVariables = lib.mkDefault true;
boot.loader.timeout = lib.mkForce 1; boot.loader.timeout = lib.mkForce 1;

View file

@ -3,10 +3,6 @@
pkgs, pkgs,
... ...
}: { }: {
zramSwap = {
enable = true;
algorithm = "zstd";
};
# nixpkgs.overlays = [ # nixpkgs.overlays = [
# (final: prev: { # (final: prev: {
# libinput = prev.libinput.overrideAttrs (old: { # libinput = prev.libinput.overrideAttrs (old: {
@ -25,11 +21,13 @@
nvtopPackages.amd nvtopPackages.amd
]; ];
services.tailscale.useRoutingFeatures = "client";
nix.buildMachines = [ nix.buildMachines = [
{ {
hostName = "nocomputer"; hostName = "nocomputer";
systems = ["x86_64-linux" "i686-linux"]; systems = ["x86_64-linux" "i686-linux"];
supportedFeatures = ["big-parallel"]; supportedFeatures = ["big-parallel" "kvm" "nixos-test" "benchmark"];
} }
]; ];
nix.extraOptions = '' nix.extraOptions = ''

View file

@ -12,7 +12,7 @@
services.fprintd.enable = true; services.fprintd.enable = true;
hardware.sensor.iio.enable = true; hardware.sensor.iio.enable = true;
services.xserver.displayManager.defaultSession = "plasma"; services.displayManager.defaultSession = "plasma";
services.displayManager.sddm.wayland.enable = true; services.displayManager.sddm.wayland.enable = true;
# systemd.user.services.backlight = { # systemd.user.services.backlight = {