23 lines
376 B
Nix
23 lines
376 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
...
|
|
}: let
|
|
in {
|
|
imports = [
|
|
./global
|
|
./features/desktop/awesome
|
|
./features/games
|
|
./features/coding
|
|
inputs.nix-colors.homeManagerModules.default
|
|
];
|
|
|
|
colorScheme = inputs.nix-colors.colorSchemes.catppuccin-mocha;
|
|
nixpkgs = {
|
|
config = {
|
|
permittedInsecurePackages = [
|
|
"electron-25.9.0"
|
|
];
|
|
};
|
|
};
|
|
}
|