This repository has been archived on 2024-11-22. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-old/modules/desktop/cam.nix
Seven Of Aces 168f87a62a modified: home.nix
modified:   hosts/blackstar/nixos/configuration.nix
modified:   hosts/shared/nixos/shared_config.nix
modified:   modules/default.nix
deleted:    modules/desktop/apps/art.nix
deleted:    modules/desktop/apps/cad.nix
deleted:    modules/desktop/apps/cam.nix
deleted:    modules/desktop/apps/chat.nix
deleted:    modules/desktop/apps/code.nix
modified:   modules/desktop/apps/godot.nix
modified:   modules/desktop/apps/minecraft.nix
modified:   modules/desktop/apps/xiv.nix
new file:   modules/desktop/art.nix
new file:   modules/desktop/cad.nix
new file:   modules/desktop/cam.nix
new file:   modules/desktop/chat.nix
new file:   modules/desktop/code.nix
new file:   modules/desktop/daw.nix
new file:   modules/desktop/games.nix
new file:   modules/system/bluetooth.nix
deleted:    modules/system/boot/.grub.nix.swp
new file:   pkgs/wallpaper-engine.nix
2024-08-25 19:08:37 -07:00

20 lines
No EOL
604 B
Nix

/* -------------------------------------------------------------------------- */
/* Computer-Aided Manufacturing config */
/* -------------------------------------------------------------------------- */
{ lib, config, options, pkgs, ... }:
with lib;
let cfg = config.modules.desktop.cam;
in {
options.modules.desktop.cam = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
/* ------------------------------- 3D Printing ------------------------------ */
prusa-slicer
];
};
}