applied nixfmt (new version)
This commit is contained in:
@@ -1,25 +1,35 @@
|
||||
{ config, lib, pkgs, ... }: {
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
options.my = {
|
||||
apps.art.enable = lib.mkEnableOption "enable";
|
||||
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
|
||||
with pkgs;
|
||||
[
|
||||
godot_4 # game development
|
||||
# gdtoolkit # gdscript language server
|
||||
]
|
||||
else
|
||||
[ ]);
|
||||
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
|
||||
[ ]
|
||||
);
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
{ config, lib, pkgs, ... }: {
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
options.my.apps.dictionaries.enable = lib.mkEnableOption "enable";
|
||||
config = lib.mkIf config.my.apps.dictionaries.enable {
|
||||
users.users.jawz.packages = with pkgs; [
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
{ config, lib, pkgs, ... }: {
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
options.my.apps.fonts.enable = lib.mkEnableOption "enable";
|
||||
config = lib.mkIf config.my.apps.fonts.enable {
|
||||
users.users.jawz.packages = with pkgs; [
|
||||
|
||||
@@ -1,4 +1,11 @@
|
||||
{ config, lib, pkgs, inputs, ... }: {
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [ inputs.nix-gaming.nixosModules.platformOptimizations ];
|
||||
options.my.apps.gaming.enable = lib.mkEnableOption "enable";
|
||||
config = lib.mkIf config.my.apps.gaming.enable {
|
||||
@@ -12,32 +19,34 @@
|
||||
platformOptimizations.enable = true;
|
||||
};
|
||||
};
|
||||
users.users.jawz.packages = let
|
||||
polymc = pkgs.callPackage ../../pkgs/polymc/default.nix { };
|
||||
citra-nightly =
|
||||
pkgs.callPackage ../../pkgs/citra/default.nix { branch = "nightly"; };
|
||||
in (with pkgs; [
|
||||
shipwright # zelda OoT port
|
||||
mangohud # fps & stats overlay
|
||||
lutris # games launcher & emulator hub
|
||||
cartridges # games launcher
|
||||
gamemode # optimizes linux to have better gaming performance
|
||||
heroic # install epic games
|
||||
protonup-qt # update proton-ge
|
||||
# minecraft # minecraft official launcher
|
||||
ns-usbloader # load games into my switch
|
||||
grapejuice # roblox manager
|
||||
users.users.jawz.packages =
|
||||
let
|
||||
polymc = pkgs.callPackage ../../pkgs/polymc/default.nix { };
|
||||
citra-nightly = pkgs.callPackage ../../pkgs/citra/default.nix { branch = "nightly"; };
|
||||
in
|
||||
(with pkgs; [
|
||||
shipwright # zelda OoT port
|
||||
mangohud # fps & stats overlay
|
||||
lutris # games launcher & emulator hub
|
||||
cartridges # games launcher
|
||||
gamemode # optimizes linux to have better gaming performance
|
||||
heroic # install epic games
|
||||
protonup-qt # update proton-ge
|
||||
# minecraft # minecraft official launcher
|
||||
ns-usbloader # load games into my switch
|
||||
grapejuice # roblox manager
|
||||
|
||||
# emulators
|
||||
rpcs3 # ps3 emulator
|
||||
pcsx2 # ps2 emulator
|
||||
cemu # wii u emulator
|
||||
dolphin-emu # wii emulator
|
||||
snes9x-gtk # snes emulator
|
||||
ryujinx # switch emulator
|
||||
]) ++ [
|
||||
citra-nightly # 3Ds emulator
|
||||
polymc # minecraft launcher with mod support
|
||||
];
|
||||
# emulators
|
||||
rpcs3 # ps3 emulator
|
||||
pcsx2 # ps2 emulator
|
||||
cemu # wii u emulator
|
||||
dolphin-emu # wii emulator
|
||||
snes9x-gtk # snes emulator
|
||||
ryujinx # switch emulator
|
||||
])
|
||||
++ [
|
||||
citra-nightly # 3Ds emulator
|
||||
polymc # minecraft launcher with mod support
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
{ config, lib, pkgs, ... }: {
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
options.my.apps.internet.enable = lib.mkEnableOption "enable";
|
||||
config = lib.mkIf config.my.apps.internet.enable {
|
||||
programs = {
|
||||
@@ -6,13 +12,19 @@
|
||||
firefox = {
|
||||
enable = true;
|
||||
package = pkgs.librewolf; # fuck u firefox
|
||||
languagePacks = [ "en-CA" "es-MX" "it" ];
|
||||
languagePacks = [
|
||||
"en-CA"
|
||||
"es-MX"
|
||||
"it"
|
||||
];
|
||||
};
|
||||
};
|
||||
services.psd.enable = true;
|
||||
users.users.jawz.packages =
|
||||
let vdhcoapp = pkgs.callPackage ../../pkgs/vdhcoapp/default.nix { };
|
||||
in (with pkgs; [
|
||||
let
|
||||
vdhcoapp = pkgs.callPackage ../../pkgs/vdhcoapp/default.nix { };
|
||||
in
|
||||
(with pkgs; [
|
||||
warp # transfer files with based ppl
|
||||
brave # crypto-browser that at least somewhat integrates with gtk
|
||||
nextcloud-client # self-hosted google-drive alternative
|
||||
@@ -26,7 +38,8 @@
|
||||
discord # :3
|
||||
teamspeak5_client # ppl say they will use this...?
|
||||
# hugo # website engine
|
||||
]) ++ [
|
||||
])
|
||||
++ [
|
||||
vdhcoapp # video download helper assistant
|
||||
];
|
||||
};
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
{ config, lib, pkgs, ... }: {
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
options.my.apps.misc.enable = lib.mkEnableOption "enable";
|
||||
config = lib.mkIf config.my.apps.misc.enable {
|
||||
users.users.jawz.packages = with pkgs; [
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
{ config, lib, pkgs, ... }: {
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
options.my.apps.multimedia.enable = lib.mkEnableOption "enable";
|
||||
config = lib.mkIf config.my.apps.multimedia.enable {
|
||||
users.users.jawz.packages = with pkgs; [
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
{ config, lib, pkgs, ... }: {
|
||||
{
|
||||
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";
|
||||
|
||||
Reference in New Issue
Block a user