Cleaned up a bit

This commit is contained in:
Bryan Ramos 2024-01-28 10:21:16 -05:00
parent 1e6c926916
commit 70dba827e8
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
4 changed files with 18 additions and 14 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, lib, config, ... }: { lib, config, ... }:
with lib; with lib;
let let
@ -11,12 +11,5 @@ in
enable = true; enable = true;
settings = import ./config/alacritty.nix; settings = import ./config/alacritty.nix;
}; };
home.packages = with pkgs; [
terminus-nerdfont
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
];
}; };
} }

View file

@ -17,7 +17,9 @@ in
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
spotify webcord showmethekey spotify
webcord
showmethekey
]; ];
}; };
} }

View file

@ -32,10 +32,6 @@ in
platformTheme = "gtk"; platformTheme = "gtk";
}; };
programs = {
imv.enable = true;
};
home.packages = with pkgs; [ home.packages = with pkgs; [
xdg-utils xdg-utils
grim grim
@ -45,8 +41,19 @@ in
ranger ranger
highlight highlight
terminus-nerdfont
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
emote
]; ];
programs = {
imv.enable = true;
};
fonts.fontconfig.enable = true; fonts.fontconfig.enable = true;
modules = { modules = {

View file

@ -8,7 +8,9 @@ in
{ options.modules.security = { enable = mkEnableOption "security"; }; { options.modules.security = { enable = mkEnableOption "security"; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = with pkgs; [ home.packages = with pkgs; [
pass wireguard-tools ipscan pass
wireguard-tools
ipscan
]; ];
}; };
} }