Some checks failed
CI / check (push) Has been cancelled
CI / ida (push) Has been cancelled
CI / cpt (push) Has been cancelled
CI / build-nixos (ena) (push) Has been cancelled
CI / build-nixos (hako) (push) Has been cancelled
CI / build-nixos (kazusa) (push) Has been cancelled
CI / build-nixos (mizuki) (push) Has been cancelled
44 lines
917 B
Nix
44 lines
917 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
xdg.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;
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
user = {
|
|
name = "imnyang";
|
|
email = "imnyang@pm.me";
|
|
};
|
|
commit.gpgsign = false;
|
|
init.defaultBranch = "main";
|
|
pull.rebase = false;
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
"${inputs.self}/modules/home/firefox.nix"
|
|
"${inputs.self}/modules/home/neovim.nix"
|
|
"${inputs.self}/modules/home/ghostty.nix"
|
|
"${inputs.self}/modules/home/zed.nix"
|
|
"${inputs.self}/modules/home/discord/linux.nix"
|
|
./config/shell.nix
|
|
./config/plasma.nix
|
|
];
|
|
}
|