2024-11-22 00:58:04 -05:00
|
|
|
{
|
2024-11-22 20:46:58 -05:00
|
|
|
description = "cy's flake";
|
2024-11-22 00:58:04 -05:00
|
|
|
|
|
|
|
inputs = {
|
2024-11-22 20:46:58 -05:00
|
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
2024-11-22 00:58:04 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs }:
|
|
|
|
let
|
|
|
|
lib = nixpkgs.lib;
|
|
|
|
in {
|
|
|
|
nixosConfigurations = {
|
|
|
|
ytnix = lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
2024-11-23 20:47:43 -05:00
|
|
|
modules = [
|
|
|
|
./configuration.nix
|
|
|
|
];
|
2024-11-22 00:58:04 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|