nixcfg/homes/dustin/default.nix
Aly Raffauf c0ce74cad2
use wallpapers from upstream flake (#13)
* initial commit

* source wallpapers from wallpaper flake and overlay over nixpkgs

* bump flake.lock

* nixos/desktop: install alyraffauf-wallpapers
2024-07-06 00:35:45 -04:00

50 lines
976 B
Nix

{
config,
inputs,
lib,
pkgs,
self,
...
}: {
home = {
username = "dustin";
homeDirectory = "/home/dustin";
stateVersion = "24.05";
packages = with pkgs; [
fractal
libreoffice-fresh
plexamp
webcord
xfce.xfce4-taskmanager
zoom-us
];
};
programs.home-manager.enable = true;
xdg.mimeApps = {
enable = true;
defaultApplications = {
"application/epub+zip" = "com.calibre_ebook.calibre.desktop;org.gnome.Evince.desktop;com.calibre_ebook.calibre.ebook-viewer.desktop;";
};
};
ar.home = {
apps = {
alacritty.enable = true;
bash.enable = true;
chromium.enable = true;
firefox.enable = true;
vsCodium.enable = true;
};
defaultApps.enable = true;
desktop.hyprland.randomWallpaper = true;
theme = {
enable = true;
wallpaper = "${pkgs.alyraffauf-wallpapers}/share/backgrounds/jr-korpa-9XngoIpxcEo-unsplash.jpg";
};
};
}