mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:43:55 -05:00
Aly Raffauf
c0ce74cad2
* initial commit * source wallpapers from wallpaper flake and overlay over nixpkgs * bump flake.lock * nixos/desktop: install alyraffauf-wallpapers
50 lines
976 B
Nix
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";
|
|
};
|
|
};
|
|
}
|