16 lines
285 B
Nix
16 lines
285 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
inputs.noctalia.packages.${pkgs.stdenv.hostPlatform.system}.default
|
|
];
|
|
|
|
imports = [
|
|
inputs.noctalia.nixosModules.default
|
|
];
|
|
|
|
programs.noctalia = {
|
|
enable = true;
|
|
systemd.enable = true;
|
|
};
|
|
}
|