Files
nixos/home/user/default.nix

22 lines
339 B
Nix
Raw Normal View History

2026-02-22 19:54:17 +00:00
{
imports = [
2026-02-22 20:41:17 +00:00
./scripts.nix
2026-02-22 19:54:17 +00:00
./gtk.nix
./packages.nix
./programs.nix
./environment.nix
];
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
];
};
};
}