nixfiles/hosts/tohru/home.nix
Katherina Walshe-Grey 050fe2d1a7 Sync Git identity across all hosts
(and also home directory location, but that's sort of standard anyway)
2024-06-05 21:23:22 +01:00

25 lines
389 B
Nix

{ config, lib, pkgs, ... }:
{
home-manager.users.qenya = { pkgs, ... }: {
imports = [
../../home/gnome
../../home/vscode.nix
];
home.packages = with pkgs; [
fortune
htop
tree
bitwarden
tor-browser-bundle-bin
];
programs.chromium.enable = true;
programs.firefox.enable = true;
home.stateVersion = "23.11";
};
}