Files

16 lines
285 B
Nix
Raw Permalink Normal View History

2026-07-26 22:03:51 +02:00
{ inputs, pkgs, ... }:
2026-07-26 11:47:24 +02:00
{
2026-07-26 22:03:51 +02:00
environment.systemPackages = with pkgs; [
inputs.noctalia.packages.${pkgs.stdenv.hostPlatform.system}.default
2026-07-26 11:47:24 +02:00
];
2026-07-26 22:03:51 +02:00
imports = [
inputs.noctalia.nixosModules.default
];
programs.noctalia = {
enable = true;
systemd.enable = true;
};
2026-07-26 11:47:24 +02:00
}