mirror of
https://github.com/JuLi0n21/publicConfig.git
synced 2026-04-19 16:00:08 +00:00
first commit
This commit is contained in:
27
flake.nix
Normal file
27
flake.nix
Normal 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; };
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user