mirror of
https://github.com/larstvei/nix-config.git
synced 2025-08-30 12:50:12 +00:00
31 lines
643 B
Nix
31 lines
643 B
Nix
{ pkgs, ... }:
|
|
{
|
|
|
|
fonts = {
|
|
packages = import ../../home/fonts { inherit pkgs; };
|
|
fontconfig = {
|
|
enable = true;
|
|
defaultFonts = {
|
|
serif = [ "Source Serif 4" ];
|
|
sansSerif = [ "Source Sans 3" ];
|
|
monospace = [ "SauceCodePro Nerd Font" ];
|
|
};
|
|
};
|
|
};
|
|
|
|
programs.fish.enable = true;
|
|
environment.shells = [ pkgs.fish ];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
programs._1password.enable = true;
|
|
programs._1password-gui.enable = true;
|
|
|
|
programs.hyprland = {
|
|
enable = true;
|
|
withUWSM = true;
|
|
package = pkgs.hyprland;
|
|
portalPackage = pkgs.xdg-desktop-portal-hyprland;
|
|
};
|
|
}
|