nixos-config/modules/flake-parts/nixos-flake.nix
Sridhar Ratnakumar 2de06ee965
Use nixos-unified
2024-10-04 12:54:07 -04:00

24 lines
511 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-unified"
"nix-index-database"
"nixvim"
"omnix"
];
};
};
}