mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -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, ... }:
|
{ config, lib, pkgs, user, ... }:
|
||||||
|
|
||||||
let
|
let cfg = config.modules.devel.engineering;
|
||||||
cfg = config.modules.devel.engineering;
|
|
||||||
in {
|
in {
|
||||||
options.modules.devel.engineering.enable = lib.mkEnableOption "engineering";
|
options.modules.devel.engineering.enable = lib.mkEnableOption "engineering";
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
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.
|
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, ... }:
|
{ config, lib, pkgs, user, ... }:
|
||||||
|
|
||||||
let
|
let cfg = config.modules.devel.notes;
|
||||||
cfg = config.modules.devel.notes;
|
|
||||||
in {
|
in {
|
||||||
options.modules.devel.notes.enable = lib.mkEnableOption "notes";
|
options.modules.devel.notes.enable = lib.mkEnableOption "notes";
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
environment.systemPackages = with pkgs; [
|
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.
|
obsidian # Note-taking and knowledge management application.
|
||||||
zk # Command-line tool for interacting with Apache ZooKeeper, a centralized service for distributed systems.
|
pandoc # Universal document converter.
|
||||||
bat # Cat clone with syntax highlighting and Git integration.
|
|
||||||
fzf # Command-line fuzzy finder for Unix-like operating systems.
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user