mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
Done?
This commit is contained in:
parent
0712b63194
commit
cc18493707
26 changed files with 1203 additions and 799 deletions
22
homeConfig/modules/utils.nix
Normal file
22
homeConfig/modules/utils.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.utils;
|
||||
|
||||
in
|
||||
{ options.modules.utils = { enable = mkEnableOption "utils"; };
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
services.syncthing.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
wget curl tree neofetch
|
||||
unzip fping calc qrendcode
|
||||
fd pkg-config pciutils
|
||||
neofetch mdbook rsync
|
||||
android-studio docker
|
||||
gcc gnumake
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue