blob: 251ccff1c8f8c5a6d64c290754f05074cc3eaa1a (
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
];
}
|