mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
Cleaned up a bit
This commit is contained in:
parent
1e6c926916
commit
70dba827e8
4 changed files with 18 additions and 14 deletions
|
|
@ -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
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,9 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
spotify webcord showmethekey
|
spotify
|
||||||
|
webcord
|
||||||
|
showmethekey
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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 = {
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue