54 lines
1.0 KiB
Nix
54 lines
1.0 KiB
Nix
{ inputs, lib, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.zen-browser.homeModules.default
|
|
|
|
./programs
|
|
|
|
./clangd.nix
|
|
./packages.nix
|
|
./xdg.nix
|
|
];
|
|
|
|
home.username = "autumn";
|
|
home.homeDirectory = "/home/autumn";
|
|
home.stateVersion = "25.05";
|
|
|
|
programs.foot = {
|
|
enable = true;
|
|
settings.main.font = lib.mkForce "Caskaydia Cove Mono: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 = "catppuccin-mocha-pink-cursors";
|
|
package = pkgs.catppuccin-cursors.mochaPink;
|
|
size = 6;
|
|
x11.enable = true;
|
|
gtk.enable = true;
|
|
};
|
|
|
|
gtk = {
|
|
enable = true;
|
|
cursorTheme = {
|
|
name = "catppuccin-mocha-pink-cursors";
|
|
package = pkgs.catppuccin-cursors.mochaPink;
|
|
size = 6;
|
|
};
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|