Switched nixos config to allow for shared configuration files

This commit is contained in:
2025-04-14 15:47:15 +01:00
parent 51f65717a1
commit 2f8cac802d
41 changed files with 4442 additions and 9 deletions

13
nixos/core.nix Normal file
View File

@@ -0,0 +1,13 @@
{
inputs,
outputs,
lib,
config,
pkgs,
unstablePkgs,
...
}: {
imports = [
./core/programs.nix
];
}