15 lines
421 B
Nix
15 lines
421 B
Nix
{ config, pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
# <home-manager/nixos>
|
|
inputs.home-manager.nixosModules.home-manager
|
|
./hyprland.nix
|
|
];
|
|
|
|
home-manager.users.rhea = {
|
|
/* The home.stateVersion option does not have a default and must be set */
|
|
home.stateVersion = "18.09";
|
|
/* Here goes the rest of your home-manager config, e.g. home.packages = [ pkgs.foo ]; */
|
|
# inherit ./hyprland.nix;
|
|
};
|
|
}
|