From 1fed7260bb4d2ba6a7ff8a4046efeae36e71cac7 Mon Sep 17 00:00:00 2001 From: Dustin Swan Date: Sun, 15 Mar 2026 20:50:40 -0600 Subject: [PATCH] defaults. programs. etc. --- deploy | 2 +- hosts/soleo/configuration.nix | 14 +++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/deploy b/deploy index 8e81932..e6309f7 100755 --- a/deploy +++ b/deploy @@ -1 +1 @@ -nix run nixpkgs#nixos-rebuild -- switch --flake .#soleo --target-host root@178.156.171.49 --build-on-remote +nixos-rebuild switch --flake .#soleo diff --git a/hosts/soleo/configuration.nix b/hosts/soleo/configuration.nix index 3f74482..4ccf032 100644 --- a/hosts/soleo/configuration.nix +++ b/hosts/soleo/configuration.nix @@ -1,4 +1,4 @@ -{ modulesPath, ... }: { +{ pkgs, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/profiles/qemu-guest.nix") ]; @@ -60,5 +60,17 @@ networking.firewall.allowedTCPPorts = [ 80 443 ]; + environment.systemPackages = with pkgs; [ + git + forgejo + ]; + + programs.neovim = { + enable = true; + defaultEditor = true; + viAlias = true; + vimAlias = true; + }; + system.stateVersion = "25.11"; }