16 lines
No EOL
395 B
Nix
Executable file
16 lines
No EOL
395 B
Nix
Executable file
{
|
|
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
|
|
];
|
|
};
|
|
};
|
|
} |