27 lines
517 B
Nix
27 lines
517 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
...
|
|
}: let
|
|
in {
|
|
imports = [
|
|
./global
|
|
./features/desktop/awesome
|
|
./features/games
|
|
./features/coding
|
|
./features/desktop/common/3d-printing.nix
|
|
inputs.nix-colors.homeManagerModules.default
|
|
];
|
|
|
|
colorScheme = inputs.nix-colors.colorSchemes.catppuccin-mocha;
|
|
|
|
home.packages = [inputs.picokontroller.packages.x86_64-linux.default];
|
|
nixpkgs = {
|
|
config = {
|
|
permittedInsecurePackages = [
|
|
"electron-25.9.0"
|
|
"nix-2.15.3"
|
|
];
|
|
};
|
|
};
|
|
}
|