mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
16 lines
341 B
Nix
16 lines
341 B
Nix
# see https://www.vimjoyer.com/nix/dendritic-home-manager
|
|
{inputs, ...}: {
|
|
imports = [
|
|
# adds home-manager options to flake-parts
|
|
inputs.home-manager.flakeModules.home-manager
|
|
inputs.disko.flakeModules.default
|
|
];
|
|
|
|
config.systems = [
|
|
"x86_64-linux"
|
|
#"aarch64-linux"
|
|
#"x86_64-darwin"
|
|
#"aarch64-darwin"
|
|
];
|
|
}
|