- the script files are now actual scripts - move the configs in them to their usual place - Added some window rules sorta kinda not really related
20 lines
344 B
Nix
20 lines
344 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
imports = lib.custom.scanPaths ./.;
|
|
|
|
programs.hyprland = {
|
|
enable = true;
|
|
# withUWSM = true; # One day, but not today
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
inputs.rose-pine-hyprcursor.packages.${pkgs.system}.default
|
|
inputs.better-control.packages.${pkgs.system}.better-control
|
|
];
|
|
}
|