nix-config/home/adalbert.nix

24 lines
376 B
Nix
Raw Normal View History

2023-12-24 11:16:59 +01:00
{
inputs,
outputs,
...
2023-12-27 10:31:23 +01:00
}: let
in {
2023-12-24 11:16:59 +01:00
imports = [
./global
2023-12-26 22:32:45 +01:00
./features/desktop/awesome
2023-12-26 13:59:30 +01:00
./features/games
./features/coding
2023-12-27 10:31:23 +01:00
inputs.nix-colors.homeManagerModules.default
2023-12-24 11:16:59 +01:00
];
2023-12-27 10:31:23 +01:00
colorScheme = inputs.nix-colors.colorSchemes.catppuccin-mocha;
2024-01-07 15:44:22 +01:00
nixpkgs = {
config = {
permittedInsecurePackages = [
"electron-25.9.0"
];
};
};
2023-12-24 11:16:59 +01:00
}