mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
14 lines
199 B
Nix
14 lines
199 B
Nix
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
inputs.noctalia.packages.${pkgs.stdenv.hostPlatform.system}.default
|
|
# ... maybe other stuff
|
|
];
|
|
}
|