aboutsummaryrefslogtreecommitdiff
path: root/hosts/jupiter/system.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-08-04 16:58:32 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-08-04 16:58:32 -0500
commiteb6d82179c83f9f54deb966bdd61cc51d682565e (patch)
tree1e76e0be8b0ed25e256fbc72cc01f9ebc476c806 /hosts/jupiter/system.nix
parent59bb582382fe0dbb7c10b21e99615511f8fd5254 (diff)
changes to jupiter
Diffstat (limited to 'hosts/jupiter/system.nix')
-rw-r--r--hosts/jupiter/system.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/hosts/jupiter/system.nix b/hosts/jupiter/system.nix
index b2d8d20..1c63845 100644
--- a/hosts/jupiter/system.nix
+++ b/hosts/jupiter/system.nix
@@ -1,4 +1,8 @@
-{inputs, ...}: {
+{
+ inputs,
+ pkgs,
+ ...
+}: {
imports = [
inputs.disko.nixosModules.disko
./disks.nix
@@ -14,5 +18,8 @@
systemd.network.wait-online.enable = false; # fix for weird wifi issue
+ services.pipewire.jack.enable = true;
+ environment.systemPackages = with pkgs; [puredata vital helvum];
+
system.stateVersion = "25.05";
}