Got NixOS file structure working (for the most part)

This commit is contained in:
lulusilly 2025-08-31 01:47:57 -04:00
parent bb1d899da2
commit 93ae0922eb
6 changed files with 247 additions and 16 deletions

View file

@ -1,16 +0,0 @@
{
description = "System flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
stylix.url = "github:danth/stylix";
};
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations.mecca = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
modules = [
./configuration.nix
inputs.stylix.nixosModules.stylix
];
};
};
}