Files
nixos/home/user/default.nix
2026-02-24 23:27:24 +00:00

22 lines
339 B
Nix

{
imports = [
./scripts.nix
./gtk.nix
./packages.nix
./programs.nix
./environment.nix
];
nixpkgs = {
config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
permittedInsecurePackages = [
"electron-25.9.0" # Obsidian
"beekeeper-studio-5.3.4"
];
};
};
}