nixos-config/home/default.nix

30 lines
560 B
Nix

{
config,
pkgs,
lib,
inputs,
...
}: {
imports = [
./modules
./system.nix
];
home.username = "xqtc";
home.homeDirectory = if config.os == "linux" then "/home/xqtc" else "/Users/xqtc";
programs.wezterm = {
enable = true;
extraConfig = builtins.readFile ./config-files/wezterm.lua;
};
programs.joshuto = {enable = true;};
dconf.enable = config.os == "linux";
services.easyeffects = lib.mkIf (pkgs.system == "x86_64-linux") {enable = true;};
home.stateVersion = "23.11";
programs.home-manager.enable = true;
}