38 lines
533 B
Nix
38 lines
533 B
Nix
args@{ pkgs, ... }:
|
|
|
|
let
|
|
secret = import ../../secret/hosts/sail.nix;
|
|
in
|
|
{
|
|
imports = [
|
|
../programs/fish.nix
|
|
../programs/starship.nix
|
|
|
|
../programs/nvim
|
|
|
|
../programs/git.nix
|
|
|
|
../programs/bat.nix
|
|
|
|
(import ../programs/custom-nix-cache.nix (args // { inherit secret; }))
|
|
|
|
../programs/fzf.nix
|
|
|
|
../programs/jq.nix
|
|
|
|
../programs/scripts.nix
|
|
];
|
|
|
|
home = {
|
|
stateVersion = "22.11";
|
|
|
|
packages = with pkgs; [
|
|
curlFull
|
|
lnav
|
|
mtr
|
|
parallel
|
|
q
|
|
ripgrep
|
|
];
|
|
};
|
|
}
|