first commit

This commit is contained in:
2026-03-10 16:57:35 +01:00
commit 31c7ad6454
14 changed files with 395 additions and 0 deletions

27
flake.nix Normal file
View File

@@ -0,0 +1,27 @@
{
description = "Configuration Based on the Synaptic Standard";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs =
{ nixpkgs, ... }@inputs:
let
lib = nixpkgs.lib;
supportedSystems = [ "x86_64-linux" ];
forAllSystems = apply:
lib.genAttrs
supportedSystems
(system: apply inputs.nixpkgs.legacyPackages.${system});
in
{
packages = forAllSystems (pkgs: {
});
nixosConfigurations = import ./configs.nix { inherit inputs; };
};
}