steamdeck: move orca-slicer to stable

This commit is contained in:
2025-02-02 19:44:55 +01:00
parent f77140e3f5
commit c3a45f7984
4 changed files with 18 additions and 28 deletions

View File

@@ -10,7 +10,7 @@
# └─ default.nix
#
{ config, lib, pkgs, inputs, user, location, agenix, ... }:
{ config, lib, pkgs, pkgs-stable, inputs, user, location, agenix, ... }:
{
imports = # Import window or display manager.
@@ -83,7 +83,7 @@
VISUAL = "nvim";
BROWSER = "firefox";
};
systemPackages = with pkgs; [ # Default packages install system-wide
systemPackages = (with pkgs; [ # Default packages install system-wide
vim
git
killall
@@ -115,7 +115,13 @@
sbctl
ausweisapp
e2fsprogs
];
])
++
(with pkgs-stable; [
orca-slicer
]);
};
services = {