diff --git a/hosts/laptop/default.nix b/hosts/laptop/default.nix index 5f5b1a9..3a7927b 100644 --- a/hosts/laptop/default.nix +++ b/hosts/laptop/default.nix @@ -1,10 +1,10 @@ { imports = [ ./hardware-configuration.nix - ./virt.nix + # ./virt.nix ]; - programs.appimage.enable = true; + # programs.appimage.enable = true; # programs.evolution.enable = true; # TODO: move to appropiate place. # ! HII @@ -13,7 +13,7 @@ joycond = false; #NOTE: enable when game night lol fingerprint = true; bluetooth = true; - printer = true; + printer = false; portable = { enable = true; diff --git a/switch.sh b/switch.sh new file mode 100755 index 0000000..713ffef --- /dev/null +++ b/switch.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +NH_FLAKE=$(mktemp -d) +git clone . "$NH_FLAKE" #TODO: replace . with valid bash for script dir. + +cd "$NH_FLAKE" || exit +git lfs install +git lfs pull +rm -rf "$NH_FLAKE/.git" + +nh os switch diff --git a/system/services/avahi.nix b/system/services/avahi.nix.old similarity index 100% rename from system/services/avahi.nix rename to system/services/avahi.nix.old diff --git a/system/services/default.nix b/system/services/default.nix index 55f0218..60fdc7e 100644 --- a/system/services/default.nix +++ b/system/services/default.nix @@ -1,7 +1,7 @@ { imports = [ ./tailscale.nix - ./avahi.nix + # ./avahi.nix ./kanata.nix ./ssh.nix ];