1
0
Fork 0
dotfiles/home/hosts/sail.nix

39 lines
533 B
Nix
Raw Normal View History

2022-08-09 17:14:22 +00:00
args@{ pkgs, ... }:
2022-07-31 18:48:49 +00:00
2022-08-09 17:14:22 +00:00
let
secret = import ../../secret/hosts/sail.nix;
in
2022-07-31 18:48:49 +00:00
{
imports = [
2022-08-01 10:24:30 +00:00
../programs/fish.nix
../programs/starship.nix
2022-07-31 18:48:49 +00:00
../programs/nvim
../programs/git.nix
../programs/bat.nix
2022-08-09 17:14:22 +00:00
(import ../programs/custom-nix-cache.nix (args // { inherit secret; }))
2022-07-31 18:48:49 +00:00
../programs/fzf.nix
../programs/jq.nix
2022-08-03 16:10:58 +00:00
../programs/scripts.nix
2022-07-31 18:48:49 +00:00
];
home = {
stateVersion = "22.11";
packages = with pkgs; [
curlFull
lnav
mtr
parallel
q
ripgrep
];
};
}