mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-26 22:21:20 +00:00
17 lines
No EOL
371 B
Nix
17 lines
No EOL
371 B
Nix
{
|
|
description = "TongFang NixOS flake";
|
|
|
|
inputs = {
|
|
zen-browser.url = "github:0xc000022070/zen-browser-flake";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, ... }@inputs: {
|
|
nixosConfigurations.tongfang = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./configuration.nix
|
|
];
|
|
specialArgs = { inherit inputs; };
|
|
};
|
|
};
|
|
} |