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 @@ +{...}: { + +}