first commit

This commit is contained in:
2026-06-24 20:20:23 +02:00
commit 8fc0d08dbc
77 changed files with 5688 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{ config, pkgs, ... }:
{
nix = {
settings = {
experimental-features = [ "nix-command" "flakes" ];
sandbox = true;
};
};
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = [
"librewolf-151.0.2-1"
"librewolf-unwrapped-151.0.2-1"
];
};
};
system = {
stateVersion = "26.05";
};
}