nixcfg/homes/morgan/default.nix
Aly Raffauf 945fbdcc39
restructure flake (#14)
* initial commit

* simplify output structure

* don't pull wallpaper from flake, use fetchGit

* swap nixvim for neovim

* fetch wallpaper correctly

* move nixvim to aly home config
2024-07-09 19:17:53 -04:00

47 lines
835 B
Nix

self: {
config,
lib,
pkgs,
...
}: {
imports = [self.homeManagerModules.default];
home = {
username = "morgan";
homeDirectory = "/home/morgan";
stateVersion = "24.05";
packages = with pkgs; [
fractal
libreoffice-fresh
webcord
xfce.xfce4-taskmanager
];
};
programs = {
home-manager.enable = true;
git = {
enable = true;
userName = "Morgan Tamayo";
userEmail = "mrgntamayo@gmail.com";
};
};
ar.home = {
apps = {
alacritty.enable = true;
bash.enable = true;
chromium.enable = true;
firefox.enable = true;
vsCodium.enable = true;
};
defaultApps.enable = true;
theme = {
enable = true;
wallpaper = "${config.xdg.dataHome}/backgrounds/jr-korpa-9XngoIpxcEo-unsplash.jpg";
};
};
}