mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-23 05:09:32 -08:00
21 lines
217 B
Nix
21 lines
217 B
Nix
|
{pkgs, ...}:
|
||
|
|
||
|
let
|
||
|
|
||
|
in
|
||
|
{
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
playerctl
|
||
|
alsa-utils
|
||
|
socat
|
||
|
jq
|
||
|
];
|
||
|
|
||
|
programs.eww = {
|
||
|
enable = true;
|
||
|
package = pkgs.eww-wayland;
|
||
|
configDir = ./eww-config;
|
||
|
};
|
||
|
}
|