mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
added ways to use different branches of nixpkgs made unfree packages have to specified switched to nix master branch moved sxhkd from a seperate flake switched spotify and maim versions because both are broken on nixos-unstable right now moved afk-cmds from local to remote added flake-utils for easier devShell decleration switched my mom's laptop to stable branch
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
_: {pkgs, ...}: {
|
|
services.kmscon = {
|
|
enable = true;
|
|
hwRender = true;
|
|
extraConfig = ''
|
|
font-size=10
|
|
'';
|
|
fonts = [
|
|
{
|
|
name = "Overpass Mono";
|
|
package = pkgs.overpass;
|
|
}
|
|
{
|
|
name = "OverpassMono Nerd Font";
|
|
package =
|
|
pkgs.nerdfonts.override
|
|
{
|
|
fonts = ["Overpass"];
|
|
};
|
|
}
|
|
{
|
|
name = "Material Design Icons";
|
|
package = pkgs.material-design-icons;
|
|
}
|
|
];
|
|
};
|
|
fonts = {
|
|
fonts = with pkgs; [
|
|
overpass
|
|
material-design-icons
|
|
(nerdfonts.override
|
|
{
|
|
fonts = ["Overpass"];
|
|
})
|
|
];
|
|
enableDefaultFonts = false;
|
|
fontDir.enable = true;
|
|
fontconfig = {
|
|
enable = true;
|
|
defaultFonts = {
|
|
serif = ["Overpass" "Overpass Nerd Font" "Material Design Icons"];
|
|
sansSerif = ["Overpass" "Overpass Nerd Font" "Material Design Icons"];
|
|
monospace = ["Overpass Mono" "OverpassMono Nerd Font" "Material Design Icons"];
|
|
};
|
|
hinting.enable = true;
|
|
antialias = true;
|
|
};
|
|
};
|
|
}
|