2024-04-18 14:21:33 -04:00
|
|
|
{
|
|
|
|
config,
|
2024-06-11 14:25:31 -04:00
|
|
|
inputs,
|
2024-04-18 14:21:33 -04:00
|
|
|
lib,
|
2024-06-11 14:25:31 -04:00
|
|
|
pkgs,
|
|
|
|
self,
|
2024-04-18 14:21:33 -04:00
|
|
|
...
|
2024-06-04 02:03:15 -04:00
|
|
|
}: {
|
2024-06-27 22:36:06 -04:00
|
|
|
imports = [
|
|
|
|
./firefox
|
2024-06-29 12:04:53 -04:00
|
|
|
./mail
|
2024-06-29 12:40:18 -04:00
|
|
|
./windowManagers
|
2024-06-27 22:36:06 -04:00
|
|
|
];
|
|
|
|
|
2024-06-11 13:31:10 -04:00
|
|
|
home = {
|
|
|
|
homeDirectory = "/home/aly";
|
2024-06-24 00:39:36 -04:00
|
|
|
|
2024-06-21 21:25:43 -04:00
|
|
|
file."${config.xdg.cacheHome}/keepassxc/keepassxc.ini".text = lib.generators.toINI {} {
|
2024-06-17 16:31:54 -04:00
|
|
|
General.LastActiveDatabase = "${config.home.homeDirectory}/sync/Passwords.kdbx";
|
|
|
|
};
|
2024-06-24 00:39:36 -04:00
|
|
|
|
2024-06-11 13:31:10 -04:00
|
|
|
packages = with pkgs; [
|
|
|
|
browsh
|
|
|
|
curl
|
|
|
|
fractal
|
|
|
|
gh
|
|
|
|
git
|
|
|
|
obsidian
|
|
|
|
python3
|
|
|
|
ruby
|
|
|
|
tauon
|
|
|
|
webcord
|
|
|
|
wget
|
|
|
|
];
|
2024-06-24 00:39:36 -04:00
|
|
|
|
2024-06-17 16:31:54 -04:00
|
|
|
stateVersion = "24.05";
|
|
|
|
username = "aly";
|
2024-06-11 13:31:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
programs = {
|
|
|
|
home-manager.enable = true;
|
2024-06-24 00:39:36 -04:00
|
|
|
|
2024-06-11 13:31:10 -04:00
|
|
|
git = {
|
|
|
|
enable = true;
|
2024-07-03 16:43:03 -04:00
|
|
|
lfs.enable = true;
|
2024-06-11 13:31:10 -04:00
|
|
|
userName = "Aly Raffauf";
|
|
|
|
userEmail = "aly@raffauflabs.com";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-06-26 22:13:02 -04:00
|
|
|
ar.home = {
|
2024-04-18 14:21:33 -04:00
|
|
|
apps = {
|
|
|
|
alacritty.enable = true;
|
|
|
|
bash.enable = true;
|
2024-07-01 22:59:41 -04:00
|
|
|
chromium.enable = true;
|
2024-04-18 14:21:33 -04:00
|
|
|
emacs.enable = true;
|
2024-05-04 07:02:48 -04:00
|
|
|
fastfetch.enable = true;
|
2024-05-28 23:17:37 -04:00
|
|
|
firefox.enable = true;
|
2024-06-21 22:19:28 -04:00
|
|
|
keepassxc.enable = true;
|
2024-04-18 14:21:33 -04:00
|
|
|
neovim.enable = true;
|
2024-05-28 23:17:37 -04:00
|
|
|
tmux.enable = true;
|
2024-04-18 14:21:33 -04:00
|
|
|
vsCodium.enable = true;
|
|
|
|
};
|
2024-06-21 17:24:33 -04:00
|
|
|
|
2024-06-28 21:07:20 -04:00
|
|
|
defaultApps.enable = true;
|
2024-07-01 22:59:41 -04:00
|
|
|
desktop.startupApps = [(lib.getExe' pkgs.keepassxc "keepassxc")];
|
2024-06-11 17:49:50 -04:00
|
|
|
|
|
|
|
theme = {
|
2024-06-28 21:07:20 -04:00
|
|
|
enable = true;
|
2024-07-06 00:35:45 -04:00
|
|
|
wallpaper = "${pkgs.alyraffauf-wallpapers}/share/backgrounds/wallhaven-3led2d.jpg";
|
2024-06-11 17:49:50 -04:00
|
|
|
};
|
2024-04-18 14:21:33 -04:00
|
|
|
};
|
|
|
|
}
|