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:
parent
696e7e6406
commit
974d277f26
9 changed files with 54 additions and 42 deletions
20
flake.nix
20
flake.nix
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue