Nix-Deploy/flake.nix
2025-07-08 23:30:44 -04:00

25 lines
No EOL
543 B
Nix

{
description = "My Shit Ass Nix Build";
outputs = inputs @ {
self,
nixpkgs,
...
}: rec {
# The output for your laptop build
nixosConfigurations = {
brandon-laptop = nixpkgs.lib.nixosSystem {
specialArgs = {inherit self inputs;};
modules = [
./hosts/brandon-laptop #individual config
./modules/desktop #share configs
];
};
};
};
# Flake inputs, think of it as external repos
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
}