nix/moduler/home.nix
2025-12-05 20:04:50 +01:00

48 lines
874 B
Nix

{
inputs,
lib,
config,
pkgs,
myhostname,
...
}:
{
imports = [
../moduler/tmux.nix
../moduler/fish.nix
../moduler/kitty.nix
../moduler/dunst.nix
../moduler/nixpkgs.nix
# ../moduler/firefox.nix
../moduler/zathura.nix
../moduler/lazygit.nix
../moduler/ssh.nix
../moduler/oh-my-posh.nix
../moduler/gtk.nix
# ../moduler/neovim.nix
../moduler/programs/k9s
];
programs.home-manager.enable = true;
programs.fish.enable = true;
programs.alacritty = {
enable = true;
# theme = "catppuccin_${theme}";
theme = "catppuccin_mocha";
settings = {
font = {
normal = {
family = lib.mkForce "FiraCode Nerd Font Mono";
};
size = lib.mkForce 16;
};
};
};
home.username = "fw";
home.homeDirectory = "/home/fw";
home.stateVersion = "25.05";
systemd.user.startServices = "sd-switch";
}