Files
nix-config/home/pc/common/home.nix
T
autumn-the-kitty-cat 1b771db0c8 feat: switch over to a neovim cofeat & fix & refactor: so many things. listed in desc
switch over to a neovim configuration in lua, btrtile for dwl, remove
unnecessary things, some browser addons, rofimoji, fix february flake
2026-03-08 04:50:14 -04:00

41 lines
818 B
Nix

{ inputs, pkgs, ... }:
{
imports = [
inputs.nixvim.homeModules.nixvim
inputs.zen-browser.homeModules.default
./programs
./clangd.nix
./packages.nix
./xdg.nix
];
home.username = "autumn";
home.homeDirectory = "/home/autumn";
home.stateVersion = "25.05";
programs.ghostty.enable = true;
programs.ghostty.settings.font-size = 24;
stylix = {
targets.waybar.enable = false;
targets.zathura.enable = false;
targets.vesktop.enable = false;
targets.zen-browser.profileNames = [ "default" ];
targets.gnome.enable = false;
};
nixpkgs.config = {
allowUnfree = true;
allowUnfreePredicate = _: true;
};
home.pointerCursor = {
name = "Adwaita";
package = pkgs.adwaita-icon-theme;
size = 12;
};
programs.home-manager.enable = true;
}