Files
home-manager/system-environment/config.nix
Nina Chlóe Kassandra Reiß 11459f6c8f Add ssh to system-environment
2026-04-20 23:16:55 +02:00

18 lines
199 B
Nix

{ pkgs, lib, ... }:
let
profile = import ../profile.nix;
in
{
imports = [
./file-system.nix
./media.nix
./ssh.nix
];
home.packages = with pkgs; [
gnumake
python3
];
}