organize packages
This commit is contained in:
11
modules/software/utilities/cad.nix
Normal file
11
modules/software/utilities/cad.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
den.aspects.cad = {
|
||||
nixos = { pkgs, ... }: {
|
||||
users.users.bug.packages = with pkgs; [
|
||||
blender
|
||||
plasticity
|
||||
orca-slicer
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
17
modules/software/utilities/desktop.nix
Normal file
17
modules/software/utilities/desktop.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ ... }: {
|
||||
den.aspects.desktop-utils = {
|
||||
nixos = { pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
file-roller
|
||||
];
|
||||
|
||||
users.users.bug.packages = with pkgs; [
|
||||
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