2025-04-05 17:40:20 -04:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
./defaults.nix
|
|
|
|
|
./gammastep.nix
|
|
|
|
|
./kdeconnect.nix
|
|
|
|
|
./ssh.nix
|
|
|
|
|
./zsh.nix
|
|
|
|
|
./taskwarrior.nix
|
|
|
|
|
./kakoune.nix
|
|
|
|
|
./clifm.nix
|
|
|
|
|
./git.nix
|
|
|
|
|
./sway.nix
|
|
|
|
|
./waybar.nix
|
|
|
|
|
./firefox.nix
|
|
|
|
|
./thunderbird.nix
|
|
|
|
|
./imv.nix
|
2025-07-12 01:01:05 -04:00
|
|
|
./zathura.nix
|
2025-04-05 17:40:20 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
home.username = "alice";
|
|
|
|
|
home.homeDirectory = "/home/alice";
|
|
|
|
|
|
|
|
|
|
# Configure cursor
|
|
|
|
|
home.pointerCursor = {
|
|
|
|
|
package = pkgs.vanilla-dmz;
|
|
|
|
|
name = "Vanilla-DMZ";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Configure icon theme
|
|
|
|
|
gtk = {
|
|
|
|
|
enable = true;
|
|
|
|
|
iconTheme = {
|
|
|
|
|
name = "Papirus";
|
|
|
|
|
package = pkgs.papirus-icon-theme;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2025-07-12 01:01:05 -04:00
|
|
|
# configure fonts correctly
|
|
|
|
|
fonts.fontconfig = {
|
|
|
|
|
enable = true;
|
|
|
|
|
defaultFonts = {
|
|
|
|
|
sansSerif = [ "Rubik" "Noto Sans" "DejaVu Sans" ];
|
|
|
|
|
serif = [ "Noto Serif" "DejaVu Serif" ];
|
|
|
|
|
monospace = [ "Noto Mono" ];
|
|
|
|
|
emoji = [ "OpenMoji" ];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2025-04-05 17:40:20 -04:00
|
|
|
home.packages = with pkgs;
|
|
|
|
|
[ marksman nil ] ++ # Language servers for built in languages
|
|
|
|
|
[ texliveFull texlab ] ++ # LaTeX - remove this eventually and put it in dev
|
|
|
|
|
# envs
|
|
|
|
|
[ xdg-terminal-exec glib upower ] ++
|
2025-07-12 01:01:05 -04:00
|
|
|
(let
|
2025-07-26 10:40:46 -04:00
|
|
|
archivo = callPackage ../pkgs/archivo/archivo.nix { };
|
|
|
|
|
highway-gothic = callPackage ../pkgs/highway-gothic/highway-gothic.nix { };
|
2025-07-12 01:01:05 -04:00
|
|
|
in [
|
|
|
|
|
noto-fonts
|
|
|
|
|
inter
|
|
|
|
|
redhat-official-fonts
|
|
|
|
|
overpass
|
|
|
|
|
ibm-plex
|
|
|
|
|
rubik
|
|
|
|
|
archivo
|
|
|
|
|
highway-gothic
|
|
|
|
|
merriweather-sans
|
|
|
|
|
paratype-pt-sans
|
|
|
|
|
paratype-pt-serif
|
|
|
|
|
libertinus
|
|
|
|
|
roboto
|
|
|
|
|
lato
|
|
|
|
|
merriweather
|
|
|
|
|
openmoji-black
|
|
|
|
|
openmoji-color
|
|
|
|
|
]) ++ # Fonts
|
2025-04-05 17:40:20 -04:00
|
|
|
[];
|
2025-07-12 01:01:05 -04:00
|
|
|
|
|
|
|
|
# terminal emulator
|
|
|
|
|
programs.alacritty.enable = true;
|
|
|
|
|
|
|
|
|
|
programs.pandoc.enable = true;
|
2025-04-05 17:40:20 -04:00
|
|
|
}
|