Compare commits
4 Commits
531121ed97
...
c932907afb
Author | SHA1 | Date |
---|---|---|
Nathan McCarty | c932907afb | |
Nathan McCarty | 4670b1212a | |
Nathan McCarty | 4c2eafada8 | |
Nathan McCarty | de32adb29a |
|
@ -2,10 +2,10 @@
|
||||||
let nathan = config.nathan;
|
let nathan = config.nathan;
|
||||||
in with lib; {
|
in with lib; {
|
||||||
config = mkIf nathan.programs.alacritty {
|
config = mkIf nathan.programs.alacritty {
|
||||||
home.packages = with pkgs;
|
home.packages = with pkgs; [
|
||||||
[
|
|
||||||
# Terminal
|
# Terminal
|
||||||
alacritty
|
alacritty
|
||||||
|
gtkterm
|
||||||
];
|
];
|
||||||
#########################
|
#########################
|
||||||
## Alacritty
|
## Alacritty
|
||||||
|
|
|
@ -29,7 +29,11 @@ in {
|
||||||
imagemagickBig
|
imagemagickBig
|
||||||
## 3d printing
|
## 3d printing
|
||||||
# Orca Slicer
|
# Orca Slicer
|
||||||
|
appimage-run
|
||||||
orcaSlicer
|
orcaSlicer
|
||||||
|
## Cad Software
|
||||||
|
# python310Packages.cadquery
|
||||||
|
# cq-editor
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -89,6 +89,13 @@ in {
|
||||||
"guest ok" = "no";
|
"guest ok" = "no";
|
||||||
"writable" = "yes";
|
"writable" = "yes";
|
||||||
};
|
};
|
||||||
|
Mount = {
|
||||||
|
path = "/run/media/nathan";
|
||||||
|
browesable = "yes";
|
||||||
|
"read only" = "no";
|
||||||
|
"guest ok" = "no";
|
||||||
|
"writable" = "yes";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue