Compare commits
2 Commits
ee3b7c2c53
...
5c7649d3df
| Author | SHA1 | Date | |
|---|---|---|---|
| 5c7649d3df | |||
| 3bb9ebf875 |
13
home-manager/features/3d-printing.nix
Normal file
13
home-manager/features/3d-printing.nix
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
bambu-studio
|
||||||
|
LycheeSlicer
|
||||||
|
orca-slicer
|
||||||
|
blender
|
||||||
|
];
|
||||||
|
|
||||||
|
# Options to get Bambu Studio to run:
|
||||||
|
# __GLX_VENDOR_LIBRARY_NAME=mesa __EGL_VENDOR_LIBRARY_FILENAMES=/nix/store/js9cfbjvlsls14nddk39fw74vyvlhz4l-mesa-25.0.7/share/glvnd/egl_vendor.d/50_mesa.json MESA_LOADER_DRIVER_OVERRIDE=zink GALLIUM_DRIVER=zink WEBKIT_DISABLE_DMABUF_RENDERER=1 bambu-studio
|
||||||
|
}
|
||||||
@@ -51,8 +51,8 @@
|
|||||||
programs = {
|
programs = {
|
||||||
# browsers
|
# browsers
|
||||||
firefox.enable = true;
|
firefox.enable = true;
|
||||||
qutebrowser.enable = true;
|
|
||||||
librewolf.enable = true;
|
librewolf.enable = true;
|
||||||
|
chromium.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# GTK settings
|
# GTK settings
|
||||||
|
|||||||
@@ -17,15 +17,17 @@
|
|||||||
neofetch
|
neofetch
|
||||||
psmisc # fuser, killal, pstree
|
psmisc # fuser, killal, pstree
|
||||||
|
|
||||||
# Files
|
# Archives
|
||||||
zip
|
zip
|
||||||
xz
|
xz
|
||||||
unzip
|
unzip
|
||||||
p7zip
|
p7zip
|
||||||
|
unrar-wrapper
|
||||||
|
|
||||||
|
# File manipulation
|
||||||
file
|
file
|
||||||
tree
|
tree
|
||||||
yazi # File manager
|
yazi # File manager
|
||||||
ueberzugpp # for image previews
|
|
||||||
w3m # terminal browser for image previews
|
w3m # terminal browser for image previews
|
||||||
dysk # better disk info
|
dysk # better disk info
|
||||||
ripgrep # better grep
|
ripgrep # better grep
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
nerd-fonts.jetbrains-mono
|
nerd-fonts.jetbrains-mono
|
||||||
|
|
||||||
libsixel # For working with images in terminals
|
libsixel # For working with images in terminals
|
||||||
|
ueberzugpp # for image previews
|
||||||
];
|
];
|
||||||
|
|
||||||
# Allow Home Manager to set fonts.
|
# Allow Home Manager to set fonts.
|
||||||
|
|||||||
12
system/features/flatpak.nix
Normal file
12
system/features/flatpak.nix
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
services.flatpak.enable = true;
|
||||||
|
|
||||||
|
systemd.services.flatpak-repo = {
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
path = [ pkgs.flatpak ];
|
||||||
|
script = ''
|
||||||
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -10,6 +10,7 @@
|
|||||||
../../features/gui.nix
|
../../features/gui.nix
|
||||||
../../features/container-dev.nix
|
../../features/container-dev.nix
|
||||||
../../features/android-dev.nix
|
../../features/android-dev.nix
|
||||||
|
../../features/flatpak.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ in
|
|||||||
"/features/gaming.nix"
|
"/features/gaming.nix"
|
||||||
"/features/linux-desktop.nix"
|
"/features/linux-desktop.nix"
|
||||||
"/features/notes.nix"
|
"/features/notes.nix"
|
||||||
|
"/features/3d-printing.nix"
|
||||||
]
|
]
|
||||||
++ [
|
++ [
|
||||||
(import ../../../home-manager/features/wallpaper.nix monitors)
|
(import ../../../home-manager/features/wallpaper.nix monitors)
|
||||||
|
|||||||
Reference in New Issue
Block a user