From 9a722c915ae71a8387957ca152fd03cd665d2630 Mon Sep 17 00:00:00 2001 From: biscuit Date: Mon, 19 May 2025 19:08:25 -0500 Subject: [PATCH] u --- modules/system.nix | 1 + system/development.nix | 8 ++++++++ system/wayland.nix | 3 +++ 3 files changed, 12 insertions(+) create mode 100644 system/development.nix create mode 100644 system/wayland.nix diff --git a/modules/system.nix b/modules/system.nix index a4f7025..29e8442 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -7,6 +7,7 @@ ../system/networking.nix ../system/print.nix ../system/term.nix + ../system/development.nix # ../system/proxy.nix # ../system/recovery.nix # only supports non-flake conf ../system/sound.nix diff --git a/system/development.nix b/system/development.nix new file mode 100644 index 0000000..7800e23 --- /dev/null +++ b/system/development.nix @@ -0,0 +1,8 @@ +{pkgs, ...}: { + environment.systemPackages = with pkgs; [ + gcc + python3 + rust + cargo + ]; +} diff --git a/system/wayland.nix b/system/wayland.nix new file mode 100644 index 0000000..9f13651 --- /dev/null +++ b/system/wayland.nix @@ -0,0 +1,3 @@ +{...}: { + +}