Compare commits

..

2 commits

Author SHA1 Message Date
Evie Litherland-Smith ab1086d9ad Merge branch 'main' of https://git.xenia.me.uk/pixelifytica/nixos 2024-07-23 06:52:36 +01:00
Evie Litherland-Smith 04a6e3e5c4 Add openscad, scad-mode package for Emacs
Move prusa-slicer and blender to personal.nix

Add kicad-small
2024-07-23 06:50:55 +01:00
3 changed files with 8 additions and 3 deletions

View file

@ -10,7 +10,6 @@
./streaming/default.nix
./desktop/plasma/default.nix
];
home.packages = with pkgs; [blender prusa-slicer];
wayland.windowManager.sway = lib.mkIf config.wayland.windowManager.sway.enable {
config = {
output = {

View file

@ -57,4 +57,5 @@ with epkgs; [
elfeed
elfeed-org
elfeed-tube
scad-mode
]

View file

@ -1,4 +1,9 @@
{pkgs, ...}: {
imports = [./default.nix];
home.packages = with pkgs; [kdePackages.ktorrent];
home.packages = with pkgs; [
kdePackages.ktorrent
prusa-slicer
blender
openscad
kicad-small
];
}