nixcfg/hosts/petalburg/home.nix

22 lines
313 B
Nix

{
inputs,
config,
pkgs,
lib,
...
}: {
imports = [
inputs.home-manager.nixosModules.home-manager
];
home-manager = {
sharedModules = [
{
alyraffauf.desktop.hyprland = {
tabletMode.enable = true;
};
}
];
users.aly = import ../../aly.nix;
};
}