mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
21 lines
209 B
Nix
21 lines
209 B
Nix
{pkgs, ...}:
|
|
|
|
let
|
|
|
|
in
|
|
{
|
|
|
|
home.packages = with pkgs; [
|
|
alsa-utils
|
|
gcal
|
|
jaq
|
|
playerctl
|
|
pw-volume
|
|
socat
|
|
];
|
|
|
|
programs.eww = {
|
|
enable = true;
|
|
configDir = ./eww-config;
|
|
};
|
|
}
|