24 lines
471 B
Nix
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"
|
|
];
|
|
};
|
|
};
|
|
}
|