1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00

Move fonts and corner rounding to theme

This commit is contained in:
RGBCube 2023-11-30 12:09:58 +03:00
parent 696e7e6406
commit 974d277f26
No known key found for this signature in database
9 changed files with 54 additions and 42 deletions

View file

@ -47,8 +47,26 @@
};
outputs = { nixpkgs, homeManager, tools, themes, fenix, ... } @ inputs: tools.eachDefaultLinuxArch (system: let
pkgs = nixpkgs.legacyPackages.${system};
upkgs = {
theme = themes.gruvbox-dark-hard;
theme = themes.custom (themes.raw.gruvbox-dark-hard // {
corner-radius = 16;
border-width = 3;
font.size.normal = 12;
font.size.big = 18;
font.sans.name = "Lexend";
font.sans.package = pkgs.lexend;
font.mono.name = "RobotoMono Nerd Font";
font.mono.package = (pkgs.nerdfonts.override {
fonts = [
"RobotoMono"
];
});
});
hyprland = inputs.hyprland.packages.${system}.default;
hyprpicker = inputs.hyprpicker.packages.${system}.default;