Files
nixos/home/user/default.nix

20 lines
303 B
Nix
Raw Normal View History

2026-02-22 19:54:17 +00:00
{
imports = [
./packages.nix
./programs.nix
2026-02-25 00:25:09 +00:00
./scripts.nix
2026-02-22 19:54:17 +00:00
];
nixpkgs = {
config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
permittedInsecurePackages = [
"electron-25.9.0" # Obsidian
2026-02-24 23:27:24 +00:00
"beekeeper-studio-5.3.4"
2026-02-22 19:54:17 +00:00
];
};
};
}