nixos/hosts/Ronin/home.nix

23 lines
565 B
Nix
Raw Normal View History

2023-08-02 11:04:38 +01:00
{ pkgs, shellConfig, wallpapers, ... }:
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;
2023-08-02 11:04:38 +01:00
xdg.configFile."wallpaper.jpg".source = wallpapers.outputs.default;
}