os/platforms/darwin/home.nix
2024-11-18 10:49:43 +01:00

9 lines
177 B
Nix

{config, lib, pkgs, inputs, os, ...}: {
home.username = "stephans";
home.homeDirectory = "/Users/stephans";
home.packages = with pkgs; [
cyberduck
];
}