move fonts to homeModule
This commit is contained in:
parent
e8e036ec93
commit
74bd9ffaa3
3 changed files with 14 additions and 9 deletions
|
@ -9,6 +9,7 @@
|
||||||
./vscode.nix
|
./vscode.nix
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
|
./fonts.nix
|
||||||
#./niri.nix
|
#./niri.nix
|
||||||
#./swaylock.nix
|
#./swaylock.nix
|
||||||
#./waybar.nix
|
#./waybar.nix
|
||||||
|
|
12
homeConfigurations/vinzenz/fonts.nix
Normal file
12
homeConfigurations/vinzenz/fonts.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
fonts.fontconfig = {
|
||||||
|
enable = true;
|
||||||
|
defaultFonts.monospace = [ "FiraCode Nerd Font Mono" ];
|
||||||
|
};
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
nerd-fonts.fira-code
|
||||||
|
roboto-mono
|
||||||
|
recursive
|
||||||
|
];
|
||||||
|
}
|
|
@ -7,15 +7,7 @@
|
||||||
libreoffice-qt6
|
libreoffice-qt6
|
||||||
];
|
];
|
||||||
|
|
||||||
fonts = {
|
fonts.enableDefaultPackages = true;
|
||||||
enableDefaultPackages = true;
|
|
||||||
fontconfig.defaultFonts.monospace = [ "FiraCode Nerd Font" ];
|
|
||||||
packages = with pkgs; [
|
|
||||||
nerd-fonts.fira-code
|
|
||||||
roboto-mono
|
|
||||||
recursive
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
hardware.logitech.wireless = {
|
hardware.logitech.wireless = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue