new formatting, nixvim is working

This commit is contained in:
Charlie Root 2024-05-22 14:29:45 +02:00
commit 0e22544a8a
88 changed files with 1994 additions and 1845 deletions

View file

@ -1,9 +1,9 @@
{ pkgs, ... }: {
{pkgs, ...}: {
fonts = {
packages = with pkgs; [
material-icons
material-design-icons
(nerdfonts.override { fonts = [ "Iosevka" "JetBrainsMono" ]; })
(nerdfonts.override {fonts = ["Iosevka" "JetBrainsMono"];})
noto-fonts
noto-fonts-cjk
noto-fonts-cjk
@ -17,10 +17,10 @@
# this fixes emoji stuff
fontconfig = {
defaultFonts = {
monospace = [ "JetBrainsMono Nerd Font" "Noto Color Emoji" ];
sansSerif = [ "Lexend" "Noto Color Emoji" ];
serif = [ "Noto Serif" "Noto Color Emoji" ];
emoji = [ "Noto Color Emoji" ];
monospace = ["JetBrainsMono Nerd Font" "Noto Color Emoji"];
sansSerif = ["Lexend" "Noto Color Emoji"];
serif = ["Noto Serif" "Noto Color Emoji"];
emoji = ["Noto Color Emoji"];
};
};
};

View file

@ -1,9 +1,12 @@
{ config, lib, ... }:
{
config,
lib,
...
}:
with lib; {
options.modules.other.system.monitors = mkOption {
description = "\n List of monitors to use\n ";
default = [ ];
default = [];
type = with types;
types.listOf (submodule {
options = {
@ -69,5 +72,4 @@ with lib; {
};
});
};
}