mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
15 lines
303 B
Nix
15 lines
303 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
|
|
];
|
|
|
|
config.systems = [
|
|
"x86_64-linux"
|
|
#"aarch64-linux"
|
|
#"x86_64-darwin"
|
|
#"aarch64-darwin"
|
|
];
|
|
}
|