19 lines
287 B
Nix
Executable file
19 lines
287 B
Nix
Executable file
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
../../modules/wayland
|
|
../../modules/librewolf
|
|
../common.nix
|
|
];
|
|
home = {
|
|
username = "e";
|
|
homeDirectory = "/home/e";
|
|
packages = with pkgs; [
|
|
discord
|
|
signal-desktop
|
|
runelite
|
|
framesh
|
|
iofqvim
|
|
];
|
|
};
|
|
}
|