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