Jafner.net/nix/home-manager/users/joey.nix
Joey Hafner d741b61a6c
Some checks failed
SSH and echo to file / ssh (push) Has been cancelled
Games/Steam: Add wine, nix-ld
VSCode: allow untrusted files
Hyprland/waybar: implement networkmanager GUI/TUI
System: Add networkmanagerapplet
2024-10-20 01:44:40 -07:00

32 lines
713 B
Nix

{ pkgs, ... }:
{
home.username = "joey";
home.homeDirectory = "/home/joey";
imports = [
../style.nix
../app/browser/zen.nix
../app/flatpak/flatpak.nix
../app/git/git.nix
../app/games/games.nix
../app/media/media.nix
../app/messaging/discord.nix
../app/obs-studio/obs-studio.nix
../app/bitwarden/bitwarden.nix
../app/sh/sh.nix # Consider splitting out to "terminal", "shell", and "cmd" or similar
../app/vscode/vscode.nix # Consider using a generalized "IDE" or "Editor" folder.
../wm/hyprland/wm.nix
];
# Desktop apps
home.packages = with pkgs; [
git
kdePackages.kdeconnect-kde
];
programs.home-manager = {
enable = true;
};
}