nix-config/home/adalbert.nix
2024-12-13 20:39:08 +01:00

24 lines
471 B
Nix

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