mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 15:43:55 -05:00
48 lines
995 B
Nix
48 lines
995 B
Nix
inputs: self: {
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
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 = "${inputs.wallpapers.packages.${pkgs.system}.default}/share/backgrounds/jr-korpa-9XngoIpxcEo-unsplash.jpg";
|
|
};
|
|
};
|
|
}
|