mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
22 lines
468 B
Nix
22 lines
468 B
Nix
|
# Even if my designs are computer-aided, it's still horrible.
|
||
|
{ config, options, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
cfg = config.modules.desktop.music;
|
||
|
in {
|
||
|
options.modules.desktop.music = {
|
||
|
enable = mkOption {
|
||
|
type = types.bool;
|
||
|
default = false;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = {
|
||
|
my.packages = with pkgs; [
|
||
|
freecad # FREE AS A BIRD, FREE AS A ALL-YOU-CAN-EAT BUFFER!
|
||
|
leocad # A CAD for leos, a well-known brand of toys.
|
||
|
};
|
||
|
}
|