18 lines
269 B
Nix
Executable file
18 lines
269 B
Nix
Executable file
{ username, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
../../modules/wayland
|
|
../../modules/librewolf
|
|
];
|
|
home = {
|
|
packages = with pkgs; [
|
|
neofetch
|
|
pulseaudio
|
|
pulsemixer
|
|
alsa-utils
|
|
discord
|
|
signal-desktop
|
|
runelite
|
|
];
|
|
};
|
|
}
|