- Move user programs out of systems section and int user section - Install user packages with home manager rather than system wide
8 lines
88 B
Nix
8 lines
88 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = (with pkgs; [
|
|
prusa-slicer
|
|
]);
|
|
}
|