mirror of
https://github.com/JuLi0n21/publicConfig.git
synced 2026-04-19 16:00:08 +00:00
28 lines
549 B
Nix
28 lines
549 B
Nix
{
|
|
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; };
|
|
};
|
|
}
|