not supposed to be here lol

This commit is contained in:
Cy Pokhrel 2024-11-22 01:39:12 -05:00
parent 2a4567daa3
commit 73f506777f
No known key found for this signature in database
GPG key ID: 1200FBE36C2ADE2E
3 changed files with 0 additions and 261 deletions

View file

@ -1,19 +0,0 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }:
let
lib = nixpkgs.lib;
in {
nixosConfigurations = {
ytnix = lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./configuration.nix ];
};
};
};
}