19 lines
454 B
Nix
19 lines
454 B
Nix
{
|
|
description = "NixOS configuration for my personal setup";
|
|
|
|
inputs = { };
|
|
|
|
outputs = { self, nixpkgs, ... }:
|
|
let systems = [ "x86_64-linux" ];
|
|
in {
|
|
nixosConfigurations = lib.genAttrs systems (system:
|
|
let pkgs = nixpkgs.legacyPackages.${system};
|
|
in nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
modules = [ ./nixos/configuration.nix ];
|
|
specialArgs = { inherit pkgs; };
|
|
});
|
|
};
|
|
|
|
}
|