mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
12 lines
163 B
Nix
12 lines
163 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Packages
|
|
environment.systemPackages = with pkgs; [
|
|
cargo
|
|
pkg-config
|
|
libxkbcommon
|
|
rustc
|
|
wayland
|
|
];
|
|
}
|