nixcfg/homes/dustin.nix

99 lines
2.2 KiB
Nix
Raw Normal View History

{
config,
inputs,
lib,
pkgs,
self,
...
}: {
2024-06-11 13:31:10 -04:00
home = {
username = "dustin";
homeDirectory = "/home/dustin";
stateVersion = "24.05";
packages = with pkgs; [
fractal
libreoffice-fresh
plexamp
vlc
webcord
xfce.xfce4-taskmanager
2024-06-11 13:31:10 -04:00
zoom-us
];
};
2024-06-11 13:31:10 -04:00
programs.home-manager.enable = true;
2024-06-18 15:14:11 -04:00
xdg.mimeApps = {
enable = true;
defaultApplications = {
"application/epub+zip" = "com.calibre_ebook.calibre.desktop;org.gnome.Evince.desktop;com.calibre_ebook.calibre.ebook-viewer.desktop;";
};
};
alyraffauf = {
apps = {
alacritty.enable = true;
bash.enable = true;
chromium.enable = true;
eza.enable = true;
firefox.enable = true;
fzf.enable = true;
vsCodium.enable = true;
};
desktop = {
hyprland = {
2024-05-05 13:28:43 -04:00
randomWallpaper = false;
};
};
theme = {
gtk = {
name = "Catppuccin-Frappe-Compact-Mauve-Dark";
package = pkgs.catppuccin-gtk.override {
accents = ["mauve"];
size = "compact";
variant = "frappe";
tweaks = ["normal"];
};
};
qt = {
name = "Catppuccin-Frappe-Mauve";
package = pkgs.catppuccin-kvantum.override {
accent = "Mauve";
variant = "Frappe";
};
};
iconTheme = {
name = "Papirus-Dark";
package = pkgs.catppuccin-papirus-folders.override {
flavor = "frappe";
accent = "mauve";
};
};
cursorTheme = {
name = "Catppuccin-Frappe-Dark-Cursors";
size = 24;
package = pkgs.catppuccin-cursors.frappeDark;
};
font = {
name = "NotoSans Nerd Font";
size = 11;
package = pkgs.nerdfonts.override {fonts = ["Noto"];};
};
terminalFont = {
name = "NotoSansM Nerd Font";
size = 11;
package = pkgs.nerdfonts.override {fonts = ["Noto"];};
};
colors = {
text = "#FAFAFA";
background = "#232634";
primary = "#CA9EE6";
secondary = "#99D1DB";
inactive = "#626880";
shadow = "#1A1A1A";
};
wallpaper = "${config.xdg.dataHome}/backgrounds/jr-korpa-9XngoIpxcEo-unsplash.jpg";
};
};
}