After I quit Tradebyte, I'm now only having a single user account. It makes sense to restructure the home-manager configuration.
7 lines
128 B
Nix
7 lines
128 B
Nix
{ nixosConfig, lib, pkgs, ... }:
|
|
|
|
lib.mkIf nixosConfig.jalr.gui.enable {
|
|
home.packages = with pkgs; [
|
|
prusa-slicer
|
|
];
|
|
}
|