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