move home-manager font config to its own file
This commit is contained in:
parent
ba11e8f4af
commit
08d8aa306d
2 changed files with 10 additions and 5 deletions
|
|
@ -1,12 +1,11 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./fonts.nix
|
||||||
./pass.nix
|
./pass.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = [
|
home.packages = [
|
||||||
pkgs.nerd-fonts.jetbrains-mono
|
|
||||||
|
|
||||||
pkgs.alacritty
|
pkgs.alacritty
|
||||||
pkgs.tofi
|
pkgs.tofi
|
||||||
pkgs.i3status-rust
|
pkgs.i3status-rust
|
||||||
|
|
@ -17,8 +16,6 @@
|
||||||
pkgs.seahorse
|
pkgs.seahorse
|
||||||
];
|
];
|
||||||
|
|
||||||
fonts.fontconfig.enable = true;
|
|
||||||
|
|
||||||
programs.alacritty.enable = true;
|
programs.alacritty.enable = true;
|
||||||
xdg.configFile."alacritty".source = "${config.dotfiles.path}/.config/alacritty";
|
xdg.configFile."alacritty".source = "${config.dotfiles.path}/.config/alacritty";
|
||||||
|
|
||||||
|
|
@ -31,6 +28,6 @@
|
||||||
home.pointerCursor = {
|
home.pointerCursor = {
|
||||||
gtk.enable = true;
|
gtk.enable = true;
|
||||||
package = pkgs.capitaine-cursors;
|
package = pkgs.capitaine-cursors;
|
||||||
name = "capitaine-cursors-4";
|
name = "capitaine-cursors";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
8
home/desktop/fonts.nix
Normal file
8
home/desktop/fonts.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
home.packages = [
|
||||||
|
pkgs.nerd-fonts.jetbrains-mono
|
||||||
|
];
|
||||||
|
|
||||||
|
fonts.fontconfig.enable = true;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue