Add bambu-studio the flatpak nix way

This commit is contained in:
Armel van Ravels
2026-04-24 13:51:28 +02:00
committed by Armel van Ravels
parent bd857c77dd
commit 1b75b1bc9a
8 changed files with 44 additions and 18 deletions

View File

@@ -23,7 +23,7 @@
../modules/qbittorrent.nix
../modules/gimp.nix
../modules/openscad.nix
../modules/flatpak.nix
../modules/bambu-studio-flatpak.nix
];
boot.loader.systemd-boot.enable = true;

View File

@@ -0,0 +1,8 @@
{ pkgs, ...}:
{
services.flatpak.enable = true;
services.flatpak.packages = [
"com.bambulab.BambuStudio"
];
}

View File

@@ -1,7 +0,0 @@
{ config, pkgs, ... } :
{
environment.systemPackages = with pkgs; [
bambu-studio
];
}

View File

@@ -1,5 +0,0 @@
{ pkgs, ...}:
{
services.flatpak.enable = true;
}

View File

@@ -1,4 +1,4 @@
{ lib, pkgs, config, ... }:
{ lib, pkgsUnstable, config, ... }:
{
options.home.git = {
@@ -18,6 +18,7 @@
config = {
programs.git = {
enable = true;
package = pkgsUnstable.git;
settings.user = {
name = config.home.git.userName;
email = config.home.git.userEmail;