23 lines
565 B
Nix
23 lines
565 B
Nix
{ 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;
|
|
xdg.configFile."wallpaper.jpg".source = wallpapers.outputs.default;
|
|
}
|