From b3bcc0f0584f44082ab03d7115f9bddac99ef9aa Mon Sep 17 00:00:00 2001 From: lsoriano-mcm Date: Fri, 6 Jun 2025 19:28:05 -0500 Subject: [PATCH] Remove info.local.nix from version control --- info.local.nix | 52 -------------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 info.local.nix diff --git a/info.local.nix b/info.local.nix deleted file mode 100644 index cb6af42..0000000 --- a/info.local.nix +++ /dev/null @@ -1,52 +0,0 @@ -{ - hostname = "nixos"; - username = "biscuit"; - timezone = "America/Chicago"; - - vpnEnable = true; - vpnSecretFile = "/home/biscuit/Wireguard/secret"; - - allowUnfree = true; - touchpadSupport = false; - - termFont = "JetBrainsMono Nerd Font"; # e.g., JetBrainsMono Nerd Font - - shellAliases = { - update = '' - if [[ $(uname) == "Darwin" ]]; then - darwin-rebuild switch --flake ~/.config/nixos#macos - else - sudo nixos-rebuild switch --flake ~/.config/nixos#desktop && home-manager switch --flake ~/.config/nixos#desktop - fi - ''; - agu = "pkill gjs & ags run ~/.config/nixos/pkgs/ags/biscuit/app.ts & disown (jobs -p) &"; - }; - - # Custom Applications - linux-apps = pkgs: - with pkgs; [ - delfin - ]; - - sshExtraConfig = '' - Host macair - User lsoriano - HostName 192.168.68.81 - ''; - - # BUILD (optional), you can remove these blocks. - trustedUsers = [ - "lsoriano" - "@groups" - "biscuit" - ]; - buildMachines = [ - { - hostName = "192.168.68.81"; - sshUser = "lsoriano"; - sshKey = "/home/biscuit/.ssh/id_rsa.pub"; - system = "x86_64-linux"; - supportedFeatures = ["big-parallel" "kvm" "nixos-test"]; - } - ]; -}