16 lines
260 B
Nix
16 lines
260 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
services = {mako = {enable = true;};};
|
|
programs = {
|
|
alacritty = {enable = true;};
|
|
swaylock = {enable = true;};
|
|
wofi = {enable = true;};
|
|
zathura = {enable = true;};
|
|
mpv = {enable = true;};
|
|
};
|
|
}
|