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
|
||||
./zsh.nix
|
||||
./starship.nix
|
||||
./fonts.nix
|
||||
#./niri.nix
|
||||
#./swaylock.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
|
||||
];
|
||||
|
||||
fonts = {
|
||||
enableDefaultPackages = true;
|
||||
fontconfig.defaultFonts.monospace = [ "FiraCode Nerd Font" ];
|
||||
packages = with pkgs; [
|
||||
nerd-fonts.fira-code
|
||||
roboto-mono
|
||||
recursive
|
||||
];
|
||||
};
|
||||
fonts.enableDefaultPackages = true;
|
||||
|
||||
hardware.logitech.wireless = {
|
||||
enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue