mirror of
https://github.com/thegeneralist01/config.git
synced 2026-05-30 08:37:01 +02:00
12 lines
243 B
Nix
12 lines
243 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
environment.systemPackages = [
|
|
inputs.noctalia.packages.${pkgs.stdenv.hostPlatform.system}.default
|
|
];
|
|
|
|
home-manager.sharedModules = [{
|
|
imports = [
|
|
inputs.noctalia.homeModules.default
|
|
];
|
|
}];
|
|
}
|