chore: moved wayland packages to a higher level

This commit is contained in:
Nick 2025-02-04 14:05:59 -06:00
parent dbaeca5340
commit 812c022cfe
72 changed files with 648 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{
config,
flake,
...
}:
let
configPath = ./config;
settingsPath = import (configPath + /settings.nix) { inherit config flake; };
in
{
services.dunst = {
enable = true;
settings = settingsPath;
};
}