organize packages
This commit is contained in:
@@ -1 +0,0 @@
|
||||
{}
|
||||
14
modules/software/compatibility/appimage.nix
Normal file
14
modules/software/compatibility/appimage.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ ... }: {
|
||||
den.aspects.appimage = {
|
||||
nixos = { pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
appimage-run
|
||||
];
|
||||
|
||||
programs.appimage = {
|
||||
enable = true;
|
||||
binfmt = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
5
modules/software/compatibility/compatibility.nix
Normal file
5
modules/software/compatibility/compatibility.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ den, ... }: {
|
||||
den.aspects.compatibility = {
|
||||
includes = with den.aspects; [ wine appimage nix-ld ];
|
||||
};
|
||||
}
|
||||
23
modules/software/compatibility/nix-ld.nix
Normal file
23
modules/software/compatibility/nix-ld.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ ... }: {
|
||||
den.aspects.nix-ld = {
|
||||
nixos = { pkgs, options, ... }: {
|
||||
programs.nix-ld = {
|
||||
enable = true;
|
||||
|
||||
libraries = options.programs.nix-ld.libraries.default ++ (with pkgs; [
|
||||
libxml2
|
||||
udev
|
||||
gcc
|
||||
egl-wayland
|
||||
mesa
|
||||
libglvnd
|
||||
wayland
|
||||
libX11
|
||||
libXcursor
|
||||
libXrandr
|
||||
libXi
|
||||
]);
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
10
modules/software/compatibility/wine.nix
Normal file
10
modules/software/compatibility/wine.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ ... }: {
|
||||
den.aspects.wine = {
|
||||
nixos = { pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
wine64
|
||||
wineWow64Packages.full
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
5
modules/software/development/development.nix
Normal file
5
modules/software/development/development.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ den, ... }: {
|
||||
den.aspects.development = {
|
||||
includes = with den.aspects; [ editors ];
|
||||
};
|
||||
}
|
||||
11
modules/software/development/editors.nix
Normal file
11
modules/software/development/editors.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ ... }: {
|
||||
den.aspects.editors = {
|
||||
nixos = { pkgs, ... }: {
|
||||
users.users.bug.packages = with pkgs; [
|
||||
zed-editor
|
||||
vscode
|
||||
arduino-ide
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -1,55 +1,25 @@
|
||||
{ inputs, lib, ... }: {
|
||||
den.aspects.flatpak = {
|
||||
nixos = { pkgs, ... }: {
|
||||
nixos = { ... }: {
|
||||
imports = [ inputs.nix-flatpak.nixosModules.nix-flatpak ];
|
||||
|
||||
services.flatpak = {
|
||||
enable = true;
|
||||
enable = true;
|
||||
|
||||
remotes = lib.mkOptionDefault [{
|
||||
name = "flathub-beta";
|
||||
location = "https://flathub.org/beta-repo/flathub-beta.flatpakrepo";
|
||||
}];
|
||||
remotes = lib.mkOptionDefault [{
|
||||
name = "flathub-beta";
|
||||
location = "https://flathub.org/beta-repo/flathub-beta.flatpakrepo";
|
||||
}];
|
||||
|
||||
update.auto.enable = true;
|
||||
uninstallUnmanaged = true;
|
||||
update.auto.enable = true;
|
||||
uninstallUnmanaged = true;
|
||||
|
||||
packages = [
|
||||
"org.vinegarhq.Sober"
|
||||
"org.vinegarhq.Vinegar"
|
||||
"org.gnome.Decibels"
|
||||
"org.pipewire.Helvum"
|
||||
"community.pathofbuilding.PathOfBuilding"
|
||||
"io.github.gaheldev.Millisecond"
|
||||
|
||||
{
|
||||
appId = "com.hytale.Launcher";
|
||||
sha256 = "sha256-SUxfyovC2umZmsOj5bOTZ8WfGCpnWcz7svOESwNekV0=";
|
||||
bundle = "${pkgs.fetchurl {
|
||||
url = "https://launcher.hytale.com/builds/release/linux/amd64/hytale-launcher-latest.flatpak";
|
||||
sha256 = "sha256-SUxfyovC2umZmsOj5bOTZ8WfGCpnWcz7svOESwNekV0=";
|
||||
}}";
|
||||
}
|
||||
|
||||
# add Polytoria client
|
||||
# https://cdn.polytoria.com/releases/installer/linux/Polytoria%20Setup%204.12.0.flatpak
|
||||
|
||||
{
|
||||
appId = "com.polytoria.launcher";
|
||||
sha256 = "sha256-VjhNiJfSdCtlH2SuP3Mn8jjOrx5xcOqhtDKaWYIwxYg=";
|
||||
bundle = "${pkgs.fetchurl {
|
||||
url = "https://github.com/4DBug/poly/releases/download/poly/poly.flatpak";
|
||||
sha256 = "sha256-VjhNiJfSdCtlH2SuP3Mn8jjOrx5xcOqhtDKaWYIwxYg=";
|
||||
}}";
|
||||
}
|
||||
];
|
||||
|
||||
overrides = {
|
||||
global = {
|
||||
Context.sockets = ["wayland" "!x11" "!fallback-x11"];
|
||||
};
|
||||
overrides = {
|
||||
global = {
|
||||
Context.sockets = [ "wayland" "!x11" "!fallback-x11" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
25
modules/software/fonts.nix
Normal file
25
modules/software/fonts.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ ... }: {
|
||||
den.aspects.fonts = {
|
||||
nixos = { pkgs, ... }: {
|
||||
fonts = {
|
||||
fontDir.enable = true;
|
||||
enableDefaultPackages = true;
|
||||
|
||||
packages = with pkgs; [
|
||||
twitter-color-emoji
|
||||
nerd-fonts.fira-code
|
||||
nerd-fonts.droid-sans-mono
|
||||
];
|
||||
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
useEmbeddedBitmaps = true;
|
||||
|
||||
defaultFonts = {
|
||||
emoji = [ "Twitter Color Emoji" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
{}
|
||||
18
modules/software/gaming/game-tools.nix
Normal file
18
modules/software/gaming/game-tools.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ ... }: {
|
||||
den.aspects.game-tools = {
|
||||
nixos = { pkgs, ... }: {
|
||||
users.users.bug.packages = with pkgs; [
|
||||
steamtinkerlaunch
|
||||
scanmem
|
||||
samrewritten
|
||||
lug-helper
|
||||
gamemode
|
||||
steam-run
|
||||
];
|
||||
|
||||
services.flatpak.packages = [
|
||||
"community.pathofbuilding.PathOfBuilding"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
5
modules/software/gaming/gaming.nix
Normal file
5
modules/software/gaming/gaming.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ den, ... }: {
|
||||
den.aspects.gaming = {
|
||||
includes = with den.aspects; [ steam roblox hytale polytoria game-tools ];
|
||||
};
|
||||
}
|
||||
16
modules/software/gaming/hytale.nix
Normal file
16
modules/software/gaming/hytale.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ ... }: {
|
||||
den.aspects.hytale = {
|
||||
nixos = { pkgs, ... }: {
|
||||
services.flatpak.packages = [
|
||||
{
|
||||
appId = "com.hytale.Launcher";
|
||||
sha256 = "sha256-SUxfyovC2umZmsOj5bOTZ8WfGCpnWcz7svOESwNekV0=";
|
||||
bundle = "${pkgs.fetchurl {
|
||||
url = "https://launcher.hytale.com/builds/release/linux/amd64/hytale-launcher-latest.flatpak";
|
||||
sha256 = "sha256-SUxfyovC2umZmsOj5bOTZ8WfGCpnWcz7svOESwNekV0=";
|
||||
}}";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
16
modules/software/gaming/polytoria.nix
Normal file
16
modules/software/gaming/polytoria.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ ... }: {
|
||||
den.aspects.polytoria = {
|
||||
nixos = { pkgs, ... }: {
|
||||
services.flatpak.packages = [
|
||||
{
|
||||
appId = "com.polytoria.launcher";
|
||||
sha256 = "sha256-VjhNiJfSdCtlH2SuP3Mn8jjOrx5xcOqhtDKaWYIwxYg=";
|
||||
bundle = "${pkgs.fetchurl {
|
||||
url = "https://github.com/4DBug/poly/releases/download/poly/poly.flatpak";
|
||||
sha256 = "sha256-VjhNiJfSdCtlH2SuP3Mn8jjOrx5xcOqhtDKaWYIwxYg=";
|
||||
}}";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
10
modules/software/gaming/roblox.nix
Normal file
10
modules/software/gaming/roblox.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ ... }: {
|
||||
den.aspects.roblox = {
|
||||
nixos = {
|
||||
services.flatpak.packages = [
|
||||
"org.vinegarhq.Sober"
|
||||
"org.vinegarhq.Vinegar"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
34
modules/software/gaming/steam.nix
Normal file
34
modules/software/gaming/steam.nix
Normal file
@@ -0,0 +1,34 @@
|
||||
{ ... }: {
|
||||
den.aspects.steam = {
|
||||
nixos = { pkgs, ... }: {
|
||||
programs = {
|
||||
steam = {
|
||||
enable = true;
|
||||
|
||||
remotePlay.openFirewall = true;
|
||||
dedicatedServer.openFirewall = false;
|
||||
|
||||
localNetworkGameTransfers.openFirewall = true;
|
||||
|
||||
gamescopeSession.enable = true;
|
||||
|
||||
extraCompatPackages = with pkgs; [
|
||||
proton-ge-bin
|
||||
];
|
||||
|
||||
#platformOptimizations.enable = true;
|
||||
};
|
||||
|
||||
gamescope = {
|
||||
enable = true;
|
||||
capSysNice = true;
|
||||
|
||||
args = [
|
||||
"--rt"
|
||||
"--expose-wayland"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
{}
|
||||
39
modules/software/music/mpd.nix
Normal file
39
modules/software/music/mpd.nix
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
den.aspects.mpd = {
|
||||
nixos = {
|
||||
services = {
|
||||
mpd = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
music_directory = "/home/bug/Music";
|
||||
|
||||
decoder = [
|
||||
{
|
||||
plugin = "ffmpeg";
|
||||
enabled = "yes";
|
||||
}
|
||||
{
|
||||
plugin = "opus";
|
||||
enabled = "no";
|
||||
}
|
||||
];
|
||||
|
||||
audio_output = [{
|
||||
type = "pipewire";
|
||||
name = "PipeWire Sound Server";
|
||||
}];
|
||||
};
|
||||
|
||||
user = "bug";
|
||||
};
|
||||
};
|
||||
|
||||
systemd.services = {
|
||||
mpd.environment = {
|
||||
XDG_RUNTIME_DIR = "/run/user/1000";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
5
modules/software/music/music.nix
Normal file
5
modules/software/music/music.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ den, ... }: {
|
||||
den.aspects.music = {
|
||||
includes = with den.aspects; [ beets player nicotine mpd ];
|
||||
};
|
||||
}
|
||||
9
modules/software/music/nicotine.nix
Normal file
9
modules/software/music/nicotine.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
den.aspects.nicotine = {
|
||||
nixos = { pkgs, ... }: {
|
||||
users.users.bug.packages = with pkgs; [
|
||||
nicotine-plus
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
14
modules/software/music/player.nix
Normal file
14
modules/software/music/player.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ ... }: {
|
||||
den.aspects.player = {
|
||||
nixos = { pkgs, ... }: {
|
||||
users.users.bug.packages = with pkgs; [
|
||||
euphonica
|
||||
];
|
||||
|
||||
services.flatpak.packages = [
|
||||
"org.gnome.Decibels"
|
||||
"org.pipewire.Helvum"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -1,195 +0,0 @@
|
||||
{
|
||||
den.aspects.packages = {
|
||||
nixos = { pkgs, options, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
gnome-boxes
|
||||
|
||||
wine64
|
||||
wineWow64Packages.full
|
||||
|
||||
appimage-run
|
||||
|
||||
pulseaudioFull
|
||||
|
||||
lug-helper
|
||||
gamemode
|
||||
steam-run
|
||||
|
||||
firmware-updater
|
||||
|
||||
file-roller
|
||||
|
||||
baobab
|
||||
|
||||
firefox-bin
|
||||
];
|
||||
|
||||
users.users.bug.packages = with pkgs; [
|
||||
obsidian
|
||||
# vesktop
|
||||
nicotine-plus
|
||||
fastfetch
|
||||
gh
|
||||
scanmem
|
||||
samrewritten
|
||||
impression
|
||||
|
||||
mission-center
|
||||
|
||||
authenticator
|
||||
|
||||
steamtinkerlaunch
|
||||
|
||||
#prismlauncher
|
||||
|
||||
euphonica
|
||||
|
||||
kooha
|
||||
|
||||
loupe
|
||||
|
||||
arduino-ide
|
||||
|
||||
geary
|
||||
|
||||
fractal
|
||||
|
||||
gnome-calendar
|
||||
];
|
||||
|
||||
|
||||
services = {
|
||||
/*
|
||||
flatpak = {
|
||||
enable = true;
|
||||
|
||||
remotes = lib.mkOptionDefault [{
|
||||
name = "flathub-beta";
|
||||
location = "https://flathub.org/beta-repo/flathub-beta.flatpakrepo";
|
||||
}];
|
||||
|
||||
update.auto.enable = true;
|
||||
uninstallUnmanaged = true;
|
||||
|
||||
packages = [
|
||||
"org.vinegarhq.Sober"
|
||||
"org.vinegarhq.Vinegar"
|
||||
"org.gnome.Decibels"
|
||||
"org.pipewire.Helvum"
|
||||
"community.pathofbuilding.PathOfBuilding"
|
||||
"io.github.gaheldev.Millisecond"
|
||||
|
||||
{
|
||||
appId = "com.hytale.Launcher";
|
||||
sha256 = "sha256-SUxfyovC2umZmsOj5bOTZ8WfGCpnWcz7svOESwNekV0=";
|
||||
bundle = "${pkgs.fetchurl {
|
||||
url = "https://launcher.hytale.com/builds/release/linux/amd64/hytale-launcher-latest.flatpak";
|
||||
sha256 = "sha256-SUxfyovC2umZmsOj5bOTZ8WfGCpnWcz7svOESwNekV0=";
|
||||
}}";
|
||||
}
|
||||
|
||||
# add Polytoria client
|
||||
# https://cdn.polytoria.com/releases/installer/linux/Polytoria%20Setup%204.12.0.flatpak
|
||||
|
||||
{
|
||||
appId = "com.polytoria.launcher";
|
||||
sha256 = "sha256-VjhNiJfSdCtlH2SuP3Mn8jjOrx5xcOqhtDKaWYIwxYg=";
|
||||
bundle = "${pkgs.fetchurl {
|
||||
url = "https://github.com/4DBug/poly/releases/download/poly/poly.flatpak";
|
||||
sha256 = "sha256-VjhNiJfSdCtlH2SuP3Mn8jjOrx5xcOqhtDKaWYIwxYg=";
|
||||
}}";
|
||||
}
|
||||
];
|
||||
|
||||
overrides = {
|
||||
global = {
|
||||
Context.sockets = ["wayland" "!x11" "!fallback-x11"];
|
||||
};
|
||||
};
|
||||
};
|
||||
*/
|
||||
|
||||
ollama = {
|
||||
enable = false;
|
||||
|
||||
loadModels = [ "llama3.2:3b" "deepseek-r1:1.5b" "deepseek-r1:8b"];
|
||||
};
|
||||
};
|
||||
|
||||
fonts = {
|
||||
fontDir.enable = true;
|
||||
enableDefaultPackages = true;
|
||||
|
||||
packages = with pkgs; [
|
||||
twitter-color-emoji
|
||||
nerd-fonts.fira-code
|
||||
nerd-fonts.droid-sans-mono
|
||||
];
|
||||
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
useEmbeddedBitmaps = true;
|
||||
|
||||
defaultFonts = {
|
||||
emoji = [ "Twitter Color Emoji" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs = {
|
||||
appimage = {
|
||||
enable = true;
|
||||
binfmt = true;
|
||||
};
|
||||
|
||||
steam = {
|
||||
enable = true;
|
||||
|
||||
remotePlay.openFirewall = true;
|
||||
dedicatedServer.openFirewall = false;
|
||||
|
||||
localNetworkGameTransfers.openFirewall = true;
|
||||
|
||||
gamescopeSession.enable = true;
|
||||
|
||||
extraCompatPackages = with pkgs; [
|
||||
proton-ge-bin
|
||||
];
|
||||
|
||||
#platformOptimizations.enable = true;
|
||||
};
|
||||
|
||||
ydotool.enable = true;
|
||||
|
||||
gamescope = {
|
||||
enable = true;
|
||||
capSysNice = true;
|
||||
args = [
|
||||
"--rt"
|
||||
"--expose-wayland"
|
||||
];
|
||||
};
|
||||
|
||||
virt-manager.enable = true;
|
||||
|
||||
nix-ld = {
|
||||
enable = true;
|
||||
|
||||
libraries = options.programs.nix-ld.libraries.default ++ (with pkgs; [
|
||||
libxml2
|
||||
udev
|
||||
gcc
|
||||
egl-wayland
|
||||
mesa
|
||||
libglvnd
|
||||
wayland
|
||||
libX11
|
||||
libXcursor
|
||||
libXrandr
|
||||
libXi
|
||||
]);
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
{}
|
||||
9
modules/software/social/mail.nix
Normal file
9
modules/software/social/mail.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ ... }: {
|
||||
den.aspects.mail = {
|
||||
nixos = { pkgs, ... }: {
|
||||
users.users.bug.packages = with pkgs; [
|
||||
geary
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
9
modules/software/social/matrix.nix
Normal file
9
modules/software/social/matrix.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ ... }: {
|
||||
den.aspects.matrix-client = {
|
||||
nixos = { pkgs, ... }: {
|
||||
users.users.bug.packages = with pkgs; [
|
||||
fractal
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
5
modules/software/social/social.nix
Normal file
5
modules/software/social/social.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ den, ... }: {
|
||||
den.aspects.social = {
|
||||
includes = with den.aspects; [ nixcord matrix-client mail ];
|
||||
};
|
||||
}
|
||||
@@ -1,21 +1,17 @@
|
||||
{
|
||||
den.aspects.development = {
|
||||
{ ... }: {
|
||||
den.aspects.desktop-utils = {
|
||||
nixos = { pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
file-roller
|
||||
];
|
||||
|
||||
users.users.bug.packages = with pkgs; [
|
||||
zed-editor
|
||||
|
||||
vscode
|
||||
|
||||
tree
|
||||
gh
|
||||
scanmem
|
||||
|
||||
arduino-ide
|
||||
obsidian
|
||||
impression
|
||||
kooha
|
||||
loupe
|
||||
authenticator
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
28
modules/software/utilities/system.nix
Normal file
28
modules/software/utilities/system.nix
Normal file
@@ -0,0 +1,28 @@
|
||||
{ ... }: {
|
||||
den.aspects.system-utils = {
|
||||
nixos = { pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
gnome-boxes
|
||||
pulseaudioFull
|
||||
firmware-updater
|
||||
];
|
||||
|
||||
users.users.bug.packages = with pkgs; [
|
||||
mission-center
|
||||
baobab
|
||||
fastfetch
|
||||
];
|
||||
|
||||
programs = {
|
||||
ydotool.enable = true;
|
||||
|
||||
virt-manager.enable = true;
|
||||
};
|
||||
|
||||
services.ollama = {
|
||||
enable = false;
|
||||
loadModels = [ "llama3.2:3b" "deepseek-r1:1.5b" "deepseek-r1:8b" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
5
modules/software/utilities/utilities.nix
Normal file
5
modules/software/utilities/utilities.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ den, ... }: {
|
||||
den.aspects.utilities = {
|
||||
includes = with den.aspects; [ system-utils desktop-utils fonts ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user