nixfiles/hosts/tohru/home.nix
2024-06-05 22:38:13 +01:00

22 lines
395 B
Nix

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