From 7fd7cfac708ac18bb849f465cd92036483f5155d Mon Sep 17 00:00:00 2001 From: biscuit Date: Fri, 20 Jun 2025 11:19:11 -0500 Subject: [PATCH] test --- .gitignore | 1 + config.local.nix | 81 ------------------------------------------------ 2 files changed, 1 insertion(+), 81 deletions(-) delete mode 100644 config.local.nix diff --git a/.gitignore b/.gitignore index 4f2ef16..8d0711f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ ./config.local.nix +config.local.nix diff --git a/config.local.nix b/config.local.nix deleted file mode 100644 index 0152f89..0000000 --- a/config.local.nix +++ /dev/null @@ -1,81 +0,0 @@ -{ - hostname = "nixos"; - username = "biscuit"; - timezone = "America/Chicago"; - - vpn = { - vpnEnable = false; - vpnSecretFile = "/home/biscuit/Wireguard/secret"; - }; - - gitProfile = { - user = "biscuit"; - email = "biscuit@sakamoto.dev"; - defaultBranch = "master"; - }; - - terminal = { - termFont = "JetBrainsMono Nerd Font"; # e.g., JetBrainsMono Nerd Font - termSize = "18"; - termShell = "fish"; - shellAliases = { - ls = "ls --color=auto"; - update = '' - sh -c ' - if [ "$(uname)" = "Darwin" ]; then - sudo darwin-rebuild switch --flake ~/.config/nixos#macos - else - sudo nixos-rebuild switch --flake ~/.config/nixos#desktop --impure && home-manager switch --flake ~/.config/nixos#desktop --impure - fi - ' - ''; - agu = "pkill gjs & ags run ~/.config/nixos/pkgs/ags/biscuit/app.ts & disown (jobs -p) &"; - }; - }; - - allowUnfree = true; # allows installation of commercial apps. - touchpadSupport = false; - - logitech-hardware = { - enable = true; - }; - - # Custom Applications - linux-apps = { - gamingDesktop = true; # adds steam - my-apps = pkgs: - with pkgs; [ - jellyfin-media-player - ]; - }; - - hyprconf = { - monitor = [ - "DP-1,highres@165,0x1080,auto" - "HDMI-A-2,highres@highrr,0x0,auto" - ]; - }; - - sshExtraConfig = '' - Host macair - User biscuit - HostName 192.168.68.81 - ''; - - # BUILD (optional), you can remove these blocks. - builder = { - trustedUsers = [ - "@groups" - "biscuit" - ]; - buildMachines = [ - { - hostName = "192.168.68.81"; - sshUser = "biscuit"; - sshKey = "/home/biscuit/.ssh/id_rsa.pub"; - system = "x86_64-linux"; - supportedFeatures = ["big-parallel" "kvm" "nixos-test"]; - } - ]; - }; -}