Move folder

This commit is contained in:
2026-02-22 19:57:00 +00:00
parent 63d7df756c
commit 61d3def3b8
49 changed files with 0 additions and 0 deletions

22
home/user/default.nix Normal file
View File

@@ -0,0 +1,22 @@
{
imports = [
./git.nix
./gtk.nix
./shell.nix
./config.nix
./packages.nix
./programs.nix
./environment.nix
];
nixpkgs = {
config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
permittedInsecurePackages = [
"electron-25.9.0" # Obsidian
];
};
};
}