13 lines
209 B
Nix
13 lines
209 B
Nix
{ pkgs, lib, ... }:
|
|
let
|
|
hyprFlake = builtins.getFlake "git+https://git.nichkara.eu/system/hyprlua";
|
|
profile = import ../../profile.nix;
|
|
in
|
|
{
|
|
|
|
imports = [
|
|
hyprFlake.homeManagerModules.default
|
|
];
|
|
|
|
}
|