Compare commits

..

4 commits

4 changed files with 15 additions and 4 deletions

View file

@ -1,10 +1,10 @@
{ {
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
./virt.nix # ./virt.nix
]; ];
programs.appimage.enable = true; # programs.appimage.enable = true;
# programs.evolution.enable = true; # TODO: move to appropiate place. # programs.evolution.enable = true; # TODO: move to appropiate place.
# ! HII # ! HII
@ -13,7 +13,7 @@
joycond = false; #NOTE: enable when game night lol joycond = false; #NOTE: enable when game night lol
fingerprint = true; fingerprint = true;
bluetooth = true; bluetooth = true;
printer = true; printer = false;
portable = { portable = {
enable = true; enable = true;

11
switch.sh Executable file
View file

@ -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

View file

@ -1,7 +1,7 @@
{ {
imports = [ imports = [
./tailscale.nix ./tailscale.nix
./avahi.nix # ./avahi.nix
./kanata.nix ./kanata.nix
./ssh.nix ./ssh.nix
]; ];