mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-03 13:55:20 +08:00
24 lines
511 B
Nix
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"
|
|
];
|
|
};
|
|
};
|
|
}
|