40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
xdg.enable = true;
|
|
# gtk.enable = true;
|
|
|
|
home.stateVersion = "25.05";
|
|
home.username = "imnyang";
|
|
home.homeDirectory = "/home/imnyang";
|
|
home.packages = import ./packages.nix { inherit pkgs inputs; };
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
VISUAL = "nvim";
|
|
};
|
|
|
|
xdg.configFile."fontconfig/conf.d/10-hm-fonts.conf".force = true;
|
|
|
|
imports = [
|
|
"${inputs.self}/modules/home/devtool/git.nix"
|
|
"${inputs.self}/modules/home/devtool/neovim.nix"
|
|
"${inputs.self}/modules/home/spicetify.nix"
|
|
"${inputs.self}/modules/home/devtool/ghostty.nix"
|
|
"${inputs.self}/modules/home/devtool/zed.nix"
|
|
"${inputs.self}/modules/home/firefox-devedition.nix"
|
|
"${inputs.self}/modules/home/vicinae.nix"
|
|
"${inputs.self}/modules/home/fastfetch.nix"
|
|
./config/shell.nix
|
|
./config/plasma.nix
|
|
"${inputs.self}/modules/home/discord/linux.nix"
|
|
"${inputs.self}/modules/home/obs-studio.nix"
|
|
"${inputs.self}/modules/home/devtool/vscode.nix"
|
|
"${inputs.self}/modules/home/devtool/ciscopackettracer.nix"
|
|
"${inputs.self}/modules/home/ssh.nix"
|
|
];
|
|
}
|