Fixed font configuration

This commit is contained in:
2025-03-27 14:26:20 +00:00
parent d3e5d8aa89
commit 190bae5036
5 changed files with 17 additions and 49 deletions

View File

@@ -6,18 +6,11 @@
pkgs,
unstablePkgs,
...
}: let
monaspaceFont = pkgs.callPackage ../../modules/monaspice_font.nix {};
in {
}: {
home.file = {
".bashrc" = lib.mkIf (!config.programs.bash.enable) {
source = ./dotfiles/dot_bashrc;
};
"monaspice" = {
source = "${monaspaceFont}/share/fonts/";
target = ".local/share/fonts/";
recursive = true;
};
"nushell" = {
source = ./dotfiles/dot_config/nushell;
target = ".config/nushell";

View File

@@ -6,9 +6,7 @@
pkgs,
unstablePkgs,
...
}: let
monaspaceFont = pkgs.callPackage ../../modules/monaspice_font.nix {};
in {
}: {
home.packages =
(with pkgs; [
alejandra
@@ -22,8 +20,5 @@ in {
lazygit
nixd
nushell
])
++ [
monaspaceFont
];
]);
}