This commit is contained in:
2026-02-03 13:20:14 -05:00
parent d0de943224
commit d6f7dab062
8 changed files with 131 additions and 13 deletions

View File

@@ -1,4 +1,9 @@
{ pkgs, ... }:
{
pkgs,
lib,
config,
...
}:
{
home.packages = with pkgs; [
zsh
@@ -11,4 +16,16 @@
enable = true;
configDir = ./config;
};
programs.niri.settings.spawn-at-startup = [
{
command = [
(lib.getExe config.programs.eww.package)
"-c"
"${config.programs.eww.configDir}"
"open"
"statusbar"
];
}
];
}