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

25 lines
349 B
Nix

{
pkgs,
inputs,
outputs,
...
}: let
in {
imports = [
./global
./features/desktop/awesome
./features/desktop/gnome
./features/coding
];
home.packages = with pkgs; [nextcloud-client];
nixpkgs = {
config = {
permittedInsecurePackages = [
"electron-25.9.0"
"nix-2.15.3"
];
};
};
}