9 lines
196 B
Nix
9 lines
196 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
# install package
|
|
environment.systemPackages = with pkgs; [
|
|
inputs.noctalia.packages.${pkgs.stdenv.hostPlatform.system}.default
|
|
# ... maybe other stuff
|
|
];
|
|
}
|