feature(stellarium): add new module for stellarium

This commit is contained in:
2026-06-07 18:33:29 +02:00
parent 7f58c16441
commit 1d558f3f7c
3 changed files with 10 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
# install stellarium for stargazing and sky simulation
environment.systemPackages = with pkgs; [
stellarium
];
}