clean up devel folder

This commit is contained in:
Tyler Starr 2024-10-24 22:31:43 -07:00
parent eb5b82bf6b
commit c4ee6b973f
3 changed files with 10 additions and 16 deletions

View File

@ -1,4 +1,7 @@
{ ... }:
{
imports = [ ./notes.nix ./engineering.nix ];
imports = [
./engineering.nix
./notes.nix
];
}

View File

@ -1,18 +1,14 @@
# CAD and 3d printing and everything nice
{ config, lib, pkgs, user, ... }:
let
cfg = config.modules.devel.engineering;
let cfg = config.modules.devel.engineering;
in {
options.modules.devel.engineering.enable = lib.mkEnableOption "engineering";
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
prusa-slicer # Slicing software optimized for Prusa 3D printers, offering user-friendly interface and settings.
freecad # Open-source parametric 3D CAD modeler.
blender # Open-source 3D creation suite for modeling, animation, rendering, and more.
openscad
freecad # Open-source parametric 3D CAD modeler.
openscad # Open-source script-only based modeller.
prusa-slicer # Slicing software optimized for Prusa 3D printers, offering user-friendly interface and settings.
];
};
}

View File

@ -1,17 +1,12 @@
{ config, lib, pkgs, user, ... }:
let
cfg = config.modules.devel.notes;
let cfg = config.modules.devel.notes;
in {
options.modules.devel.notes.enable = lib.mkEnableOption "notes";
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
pandoc # Universal document converter.
gollum # Wiki software that provides a simple, Git-based wiki engine.
obsidian # Note-taking and knowledge management application.
zk # Command-line tool for interacting with Apache ZooKeeper, a centralized service for distributed systems.
bat # Cat clone with syntax highlighting and Git integration.
fzf # Command-line fuzzy finder for Unix-like operating systems.
pandoc # Universal document converter.
];
};
}