nix/home/t14/home.nix
2023-12-02 19:30:26 -06:00

21 lines
331 B
Nix
Executable file

{ pkgs, ... }:
{
imports = [
../../modules/wayland
../../modules/librewolf
];
home = {
username = "e";
homeDirectory = "/home/e";
packages = with pkgs; [
discord
signal-desktop
runelite
framesh
ledger-live-desktop
prismlauncher
chromium
jdk17
];
};
}