Add MangoWM configuration and scripts for window management on scrolling layout

This commit is contained in:
2026-06-12 10:56:57 +02:00
parent 434f14707c
commit c9f2d4eccf
6 changed files with 386 additions and 0 deletions

20
mango/default.nix Normal file
View File

@ -0,0 +1,20 @@
{
inputs,
pkgs,
...
}: {
imports = [
inputs.mangowm.nixosModules.mango
../modules/hyprlock
];
environment.systemPackages = with pkgs; [
libnotify #Needed to send notifications myself (Like when reloading the config)
];
home-manager.sharedModules = [
./home.nix
];
programs.mango.enable = true;
}