reorg
This commit is contained in:
parent
fe3dde6667
commit
d37834a164
30 changed files with 245 additions and 179 deletions
35
home-manager/t14/home.nix
Executable file
35
home-manager/t14/home.nix
Executable file
|
|
@ -0,0 +1,35 @@
|
|||
{ pkgs, attrs, ... }:
|
||||
{
|
||||
imports = [
|
||||
../shared/programs/default.nix
|
||||
../shared/wayland/default.nix
|
||||
];
|
||||
home = {
|
||||
username = attrs.username;
|
||||
homeDirectory = "/home/" + attrs.username;
|
||||
packages = with pkgs; [
|
||||
# gaming
|
||||
prismlauncher
|
||||
runelite
|
||||
jdk17
|
||||
|
||||
# comms
|
||||
signal-desktop
|
||||
discord
|
||||
|
||||
# apps
|
||||
framesh
|
||||
chromium
|
||||
|
||||
# font
|
||||
spleen
|
||||
|
||||
# sysutils
|
||||
appimage-run
|
||||
wireguard-tools
|
||||
|
||||
];
|
||||
};
|
||||
fonts.fontconfig.enable = true;
|
||||
systemd.user.startServices = "sd-switch";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue