mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 03:07:32 -08:00
clean up devel folder
This commit is contained in:
parent
eb5b82bf6b
commit
c4ee6b973f
@ -1,4 +1,7 @@
|
||||
{ ... }:
|
||||
{
|
||||
imports = [ ./notes.nix ./engineering.nix ];
|
||||
imports = [
|
||||
./engineering.nix
|
||||
./notes.nix
|
||||
];
|
||||
}
|
||||
|
@ -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.
|
||||
];
|
||||
};
|
||||
}
|
||||
|
@ -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.
|
||||
];
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user