massive lsp evaluated rewrite

This commit is contained in:
2024-06-08 23:54:40 -06:00
parent 6ec6eb239a
commit fd340effd9
46 changed files with 227 additions and 242 deletions

View File

@@ -4,20 +4,21 @@
dev.gameDev.enable = lib.mkEnableOption "enable";
};
config = lib.mkIf config.my.apps.art.enable {
users.users.jawz.packages = with pkgs;
[
gimp # the coolest bestest art program to never exist
krita # art to your heart desire!
mypaint # not the best art program
mypaint-brushes # but it's got some
mypaint-brushes1 # nice damn brushes
pureref # create inspiration/reference boards
blender # cgi animation and sculpting
# drawpile # arty party with friends!!
] ++ (if config.my.dev.gameDev.enable then [
users.users.jawz.packages = (with pkgs; [
gimp # the coolest bestest art program to never exist
krita # art to your heart desire!
mypaint # not the best art program
mypaint-brushes # but it's got some
mypaint-brushes1 # nice damn brushes
pureref # create inspiration/reference boards
blender # cgi animation and sculpting
# drawpile # arty party with friends!!
]) ++ (if config.my.dev.gameDev.enable then
with pkgs; [
godot_4 # game development
gdtoolkit # gdscript language server
] else
[ ]);
]
else
[ ]);
};
}

View File

@@ -12,7 +12,7 @@ in {
dedicatedServer.openFirewall = true;
};
};
users.users.jawz.packages = with pkgs; [
users.users.jawz.packages = (with pkgs; [
mangohud # fps & stats overlay
lutris # games launcher & emulator hub
cartridges # games launcher
@@ -20,7 +20,6 @@ in {
heroic # install epic games
protonup-qt # update proton-ge
#minecraft # minecraft official launcher
polymc # minecraft launcher with mod support
ns-usbloader # load games into my switch
# grapejuice # roblox manager
@@ -32,6 +31,8 @@ in {
#citra-nightly # 3Ds emulator
snes9x-gtk # snes emulator
ryujinx # switch emulator
]) ++ [
polymc # minecraft launcher with mod support
];
};
}

View File

@@ -11,8 +11,7 @@ in {
};
};
services.psd.enable = true;
users.users.jawz.packages = with pkgs; [
vdhcoapp # video download helper assistant
users.users.jawz.packages = (with pkgs; [
nextcloud-client # self-hosted google-drive alternative
fragments # beautiful torrent client
protonmail-bridge # bridge for protonmail
@@ -23,6 +22,8 @@ in {
vesktop # screen share with audio discord
discord # :3
# hugo # website engine
]) ++ [
vdhcoapp # video download helper assistant
];
};
}

View File

@@ -1,6 +1,7 @@
{ config, lib, pkgs, ... }: {
options.my.apps.office.enable = lib.mkEnableOption "enable";
config = lib.mkIf config.my.apps.office.enable {
environment.variables.CALIBRE_USE_SYSTEM_THEME = "1";
users.users.jawz.packages = with pkgs; [
libreoffice # office, but based
calibre # ugly af eBook library manager
@@ -11,6 +12,5 @@
# wike # gtk wikipedia wow!
# denaro # manage your finances
];
environment.variables = { CALIBRE_USE_SYSTEM_THEME = "1"; };
};
}