nixos-config/modules/flake-parts/nixos-flake.nix
Sridhar Ratnakumar dfbcc3663c Update some stuff
2026-03-16 18:27:14 -04:00

26 lines
548 B
Nix

{ inputs, ... }:
{
imports = [
inputs.nixos-unified.flakeModules.default
inputs.nixos-unified.flakeModules.autoWire
];
perSystem = { self', ... }: {
packages.default = self'.packages.activate;
# Flake inputs we want to update periodically
# Run: `nix run .#update`.
nixos-unified = {
primary-inputs = [
"nixpkgs"
"home-manager"
"nix-darwin"
# "nixos-hardware"
"nix-index-database"
# "nixvim"
"oc"
"nix-agent-wire"
"skills"
];
};
};
}