diff --git a/nixos/configuration.nix b/nixos/configuration.nix index e21966f..1e67277 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -3,6 +3,7 @@ [ # Include the results of the hardware scan. ./hardware-configuration.nix ../modules/system.nix + ../packages/astal/default.nix ]; # Bootloader. diff --git a/packages/astal/default.nix b/packages/astal/default.nix new file mode 100644 index 0000000..18971ba --- /dev/null +++ b/packages/astal/default.nix @@ -0,0 +1,7 @@ +{ ... }: { + environment.systemPackages = with pkgs; [ + astal.io + astal.gjs + astal.hyprland + ]; +}