marleyos/homes/x86_64-linux/marley@nyx/default.nix

79 lines
1.4 KiB
Nix
Raw Normal View History

{
lib,
pkgs,
...
}:
2024-11-15 22:12:35 -08:00
let
inherit (lib.marleyos) enabled;
2024-11-15 22:12:35 -08:00
in
{
2024-11-15 22:12:35 -08:00
home.keyboard.options = [ "apple:alupckeys" ];
2024-11-16 21:10:07 -08:00
targets.genericLinux = enabled;
# FIXME: Remove this once nvim is set up
home.packages = with pkgs; [
nixfmt-rfc-style
nil
statix
manix
];
marleyos = {
2024-11-16 12:09:40 -08:00
isDesktop = true;
2024-11-15 22:12:35 -08:00
appearance = {
base = enabled;
gtk = enabled;
qt = enabled;
};
2024-11-16 21:10:07 -08:00
# TODO: Seperate out into graphical/shell/tui?
2024-11-16 11:27:44 -08:00
programs = {
2024-11-16 12:08:05 -08:00
amfora = enabled;
2024-11-16 12:21:24 -08:00
bat = enabled;
2024-11-16 12:23:16 -08:00
btop = enabled;
2024-11-16 12:34:21 -08:00
cava = enabled;
2024-11-16 12:57:30 -08:00
cheat = enabled;
2024-11-16 14:20:26 -08:00
curl = enabled;
2024-11-16 14:26:17 -08:00
eza = enabled;
2024-11-16 14:57:04 -08:00
figlet = enabled;
2024-11-16 11:27:44 -08:00
fish = enabled;
2024-11-16 15:10:06 -08:00
fzf = enabled;
2024-11-16 15:27:19 -08:00
gh = enabled;
2024-11-16 17:12:58 -08:00
git = enabled;
2024-11-16 17:15:18 -08:00
glow = enabled;
2024-11-16 17:26:48 -08:00
gpg = enabled;
2024-11-16 17:31:46 -08:00
hyfetch = enabled;
journalctl = enabled;
2024-11-16 17:33:19 -08:00
just = enabled;
2024-11-16 17:35:38 -08:00
lazygit = enabled;
2024-11-16 17:37:09 -08:00
less = enabled;
2024-11-16 18:29:01 -08:00
man = enabled;
2024-11-16 18:30:58 -08:00
ncmpcpp = enabled;
2024-11-16 11:27:44 -08:00
neo = enabled;
2024-11-16 19:36:30 -08:00
rbw = enabled;
2024-11-16 19:41:14 -08:00
ripgrep = enabled;
2024-11-17 19:01:26 -08:00
rofi = enabled;
2024-11-16 19:43:34 -08:00
ssh = enabled;
2024-11-16 20:45:03 -08:00
starship = enabled;
systemctl = enabled;
2024-11-16 20:47:47 -08:00
tmux = enabled;
2024-11-16 21:10:07 -08:00
wezterm = enabled;
2024-11-16 21:13:07 -08:00
wget = enabled;
2024-11-16 21:15:01 -08:00
zathura = enabled;
2024-11-16 21:16:16 -08:00
zoxide = enabled;
2024-11-16 11:27:44 -08:00
};
2024-11-16 21:18:54 -08:00
services = {
clipboard = enabled;
2024-11-16 21:26:35 -08:00
# TODO: bundle this with the WM under xorg
dunst = enabled;
2024-11-16 21:29:25 -08:00
syncthing = enabled;
2024-11-16 21:18:54 -08:00
};
2024-11-15 22:12:35 -08:00
xorg = {
xsession = enabled;
};
};
home.stateVersion = "24.05";
}