restructured and added font

This commit is contained in:
Kristian Krsnik 2023-08-27 00:27:36 +02:00
parent 91adefc48e
commit 1c2fa46bce
20 changed files with 23 additions and 11 deletions

View File

@ -41,7 +41,7 @@
inherit pkgs;
modules = [
./home
./home.nix
{
_module.args.wallpaper = wallpaper.packages.${system}.default;
}

View File

@ -21,15 +21,16 @@
targets.genericLinux.enable = false; # Enable on non-nixos ditros
imports = [
./bash.nix
./direnv.nix
./firefox.nix
./git.nix
./gnome.nix
./nvim
./packages.nix
./thunderbird.nix
./vscode.nix
./modules/bash.nix
./modules/direnv.nix
./modules/firefox.nix
./modules/fonts.nix
./modules/git.nix
./modules/gnome.nix
./modules/nvim
./modules/packages.nix
./modules/thunderbird.nix
./modules/vscode.nix
];
# Programs

9
modules/fonts.nix Normal file
View File

@ -0,0 +1,9 @@
{pkgs, ...}: {
config = {
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
nerdfonts
];
};
}

View File

@ -40,7 +40,6 @@
osu-lazer
# Misc
nerdfonts # Font with glyphs for status bar
comma # Run any binary from the repos with a comma `, cowsay neato`
gnome-decoder
tor-browser-bundle-bin

View File

@ -62,6 +62,9 @@
};
};
"terminal.integrated.defaultProfile.linux" = "bash";
"editor.fontFamily" = "'FiraCode Nerd Font'";
"editor.fontLigatures" = true;
};
};
}