blob: c9bc20cfe07867988c640f2f27822d018a052fb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ pkgs, inputs, ... }:
{
# Noctalia shell (the desktop shell this configuration is named after).
# Two copies are installed:
# - inputs.noctalia: the project built straight from the flake input.
# - noctalia-shell: the packaged copy shipped in nixpkgs.
environment.systemPackages = with pkgs; [
inputs.noctalia.packages.${stdenv.hostPlatform.system}.default
noctalia-shell
];
}
|