nix-config/home/adalbert.nix

32 lines
561 B
Nix
Raw Permalink Normal View History

2023-12-24 11:16:59 +01:00
{
inputs,
outputs,
2024-04-05 23:17:51 +02:00
pkgs,
2023-12-24 11:16:59 +01:00
...
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
2024-02-04 20:48:28 +01:00
./features/desktop/common/3d-printing.nix
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-03-14 14:20:33 +01:00
home.packages = [
inputs.picokontroller.packages.x86_64-linux.default
# pkgs.citrix_workspace
];
2024-01-07 15:44:22 +01:00
nixpkgs = {
config = {
permittedInsecurePackages = [
"electron-25.9.0"
2024-03-14 14:20:53 +01:00
"nix-2.15.3"
2024-01-07 15:44:22 +01:00
];
};
};
2023-12-24 11:16:59 +01:00
}