flake/homes/me/default.nix

103 lines
2.2 KiB
Nix
Raw Normal View History

2026-03-21 10:25:31 +10:00
{pkgs, ...}: {
2024-10-30 23:25:57 +10:00
imports = [
2026-03-22 12:26:35 +10:00
./modules/cli/git.nix
./modules/cli/ssh.nix
2025-10-24 23:39:00 +10:00
2026-03-22 12:26:35 +10:00
../modules/term/foot.nix
../modules/shell/zsh.nix
2026-03-26 09:32:49 +10:00
../modules/shell/zsh.nix
../modules/shell/fish.nix
../modules/shell/elvish.nix
../modules/editor/helix.nix
2026-02-27 16:49:15 +10:00
../modules/editor/neovim
2026-03-22 12:26:35 +10:00
../modules/cli/bat.nix
../modules/cli/btop.nix
../modules/cli/hyfetch.nix
../modules/cli/tmux.nix
2026-02-22 13:01:00 +10:00
../modules/apps/firefox.nix
2026-03-10 00:13:01 +10:00
../modules/apps/zen-browser.nix
2025-10-24 11:52:08 +10:00
../modules/apps/thunderbird.nix
2026-02-22 13:01:00 +10:00
../modules/apps/nixcord.nix
2026-03-03 11:42:04 +10:00
../modules/apps/spicetify.nix
2026-02-22 13:01:00 +10:00
2026-03-22 12:26:35 +10:00
../modules/wm/hyprland
../modules/wm/mango
../modules/de/mako.nix
2026-03-26 09:32:49 +10:00
../modules/de/waybar
2024-10-30 23:25:57 +10:00
];
2026-03-26 09:32:49 +10:00
programs.elvish.enable = true;
2024-10-30 19:45:26 +10:00
home = {
shellAliases = {
2026-03-22 11:44:25 +10:00
# nix
2026-03-21 10:25:31 +10:00
nd = "nix develop";
2026-03-22 11:44:25 +10:00
ntv = "nix-search-tv";
rebuild = "nh os switch ~/flake";
trybuild = "nh os test ~/flake";
2026-03-22 11:47:57 +10:00
# shell utilities
2026-03-22 12:26:35 +10:00
ls = "eza --color=auto";
l = "eza -Alh --color=auto --icons=auto";
ll = "eza -lh --color=auto --icons=auto";
li = "eza --color=auto --git-ignore";
2026-03-22 11:47:57 +10:00
rgf = "rg --files | rg";
watch = "viddy";
};
2024-11-07 17:37:15 +10:00
pointerCursor = {
gtk.enable = true;
# x11.enable = true # dont enable since im on hyprland
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
size = 16;
};
2025-10-24 11:47:58 +10:00
packages = with pkgs; [
# for services.gnome-keyring
2026-03-22 11:47:57 +10:00
gcr # provides org.gnome.keyring.SystemPrompter
2025-10-24 11:47:58 +10:00
seahorse # gui
2026-03-22 11:47:57 +10:00
krita
2025-10-24 11:52:24 +10:00
tor-browser
fuzzel
2025-11-01 12:09:28 +10:00
speedtest-cli
2025-10-24 11:47:58 +10:00
];
2024-10-30 19:45:26 +10:00
};
2024-11-08 04:08:30 +10:00
gtk = {
enable = true;
font.name = "Victor Mono SemiBold 12";
theme = {
name = "Dracula";
package = pkgs.dracula-theme;
};
iconTheme = {
name = "kora";
package = pkgs.kora-icon-theme;
};
# TODO: use a variable to mirror this cursor size
# with the `home.pointerCurser.size`
cursorTheme = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
size = 16;
};
};
qt = {
enable = true;
platformTheme.name = "gtk2";
style.name = "gtk2";
};
2025-10-24 11:47:58 +10:00
services = {
gnome-keyring.enable = true;
};
2024-11-04 11:59:14 +10:00
home.stateVersion = "24.05"; # don't change this
2024-10-30 19:45:26 +10:00
}