nixcfg/hosts/mossdeep/home.nix
Aly Raffauf 647a36b46c refactor flake.nix for multiarch support
flake: simplify nixos hosts with nixpkgs.lib.genAttrs
2024-05-24 13:37:55 -04:00

15 lines
181 B
Nix

{
inputs,
config,
pkgs,
lib,
...
}: {
imports = [
inputs.home-manager.nixosModules.home-manager
];
home-manager = {
users.aly = import ../../aly.nix;
};
}