17 lines
238 B
Nix
17 lines
238 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./common.nix
|
|
./env
|
|
./gui
|
|
./gui/kdeconnect.nix
|
|
./tui
|
|
./git/personal.nix
|
|
./ssh/personal.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
discord
|
|
element-desktop
|
|
qbittorrent
|
|
];
|
|
}
|