nixos/hosts/Ronin/home.nix

22 lines
483 B
Nix
Raw Normal View History

{ pkgs, shellConfig, ... }:
let
username = "elitherl";
homeDirectory = "/home/${username}";
in {
imports = [
shellConfig
../../home/emacs/server.nix
../../home/git/work.nix
../../home/ssh/work.nix
../../home/tui
../../home/wezterm
];
home = {
inherit username homeDirectory;
stateVersion = "22.11";
packages = with pkgs; [ openfortivpn nomachine-client ];
};
programs.home-manager.enable = true;
programs.chromium.enable = true;
}