18 lines
199 B
Nix
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
|
|
];
|
|
}
|