nix-config/home/adalbert.nix
2024-12-02 20:15:40 +01:00

28 lines
446 B
Nix

{
inputs,
outputs,
pkgs,
...
}: let
in {
imports = [
./global
./features/desktop/awesome
./features/games
./features/coding
./features/desktop/common/3d-printing.nix
];
home.packages = [
inputs.picokontroller.packages.x86_64-linux.default
# pkgs.citrix_workspace
];
nixpkgs = {
config = {
permittedInsecurePackages = [
"electron-25.9.0"
"nix-2.15.3"
];
};
};
}