From 499b0f433456c50f24812c6ca30efbf4cb1e2ec3 Mon Sep 17 00:00:00 2001 From: Drew Haven Date: Tue, 21 Oct 2025 11:58:35 -0700 Subject: [PATCH] [astronomy] Adds Stellarium, KStars and Celestia to Vega --- home-manager/features/astronomy.nix | 8 ++++++++ system/hosts/vega/drew.nix | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 home-manager/features/astronomy.nix diff --git a/home-manager/features/astronomy.nix b/home-manager/features/astronomy.nix new file mode 100644 index 0000000..7dace63 --- /dev/null +++ b/home-manager/features/astronomy.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + stellarium + kstars + celestia + ]; +} diff --git a/system/hosts/vega/drew.nix b/system/hosts/vega/drew.nix index 9662be5..0326935 100644 --- a/system/hosts/vega/drew.nix +++ b/system/hosts/vega/drew.nix @@ -1,7 +1,8 @@ -{ pkgs, lib, ... }: +{ pkgs, ... }: { imports = map (x: ../../../home-manager + x) [ + "/features/astronomy.nix" "/features/development/development.nix" "/features/development/docker.nix" "/features/development/haskell.nix"