nix-flakes/hosts/machine/ena/home/default.nix
imnyang 70284509f3
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
Initial commit
2026-07-03 16:53:49 +09:00

46 lines
1,009 B
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 = "nano";
VISUAL = "nano";
};
xdg.configFile."fontconfig/conf.d/10-hm-fonts.conf".force = true;
programs.vicinae = {
enable = true;
systemd = {
enable = true;
autoStart = true;
environment = {
USE_LAYER_SHELL = 1;
};
};
};
imports = [
"${inputs.self}/modules/home/git.nix"
# "${inputs.self}/modules/home/firefox.nix
"${inputs.self}/modules/home/neovim.nix"
"${inputs.self}/modules/home/spicetify.nix"
"${inputs.self}/modules/home/ghostty.nix"
"${inputs.self}/modules/home/zed.nix"
"${inputs.self}/modules/home/discord/linux.nix"
"${inputs.self}/modules/home/vscode.nix"
./config/shell.nix
./config/plasma.nix
];
}