17 lines
210 B
Nix
17 lines
210 B
Nix
{
|
|
pkgs,
|
|
username,
|
|
lib,
|
|
hwconfig,
|
|
...
|
|
}: {
|
|
imports = [
|
|
(import ./hyprland.nix {
|
|
inherit pkgs;
|
|
inherit lib;
|
|
inherit hwconfig;
|
|
inherit username;
|
|
})
|
|
#../kando
|
|
];
|
|
}
|