This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/env/nix/profiles/base.nix

63 lines
852 B
Nix
Raw Normal View History

2020-10-24 10:03:34 -05:00
{ config, pkgs, ... }: {
imports = [
../modules/fish.nix
../modules/bash.nix
../modules/tmux.nix
../modules/neovim.nix
];
2020-10-24 09:06:34 -05:00
i18n.defaultLocale = "en_US.UTF-8";
time.timeZone = "America/Chicago";
environment = {
systemPackages = with pkgs; [
2020-10-24 10:03:34 -05:00
less
2020-10-24 09:06:34 -05:00
wget curl
rsync
w3m
git
pciutils usbutils binutils
ripgrep sd fd
2020-10-24 10:03:34 -05:00
unzip
2020-10-25 00:33:20 -05:00
killall
2020-10-24 09:06:34 -05:00
];
variables = {
2020-10-24 10:03:34 -05:00
PAGER = "less";
VISUAL = "less";
};
2020-10-24 09:06:34 -05:00
};
2020-10-24 10:03:34 -05:00
programs = {
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "curses";
};
};
services = {
openssh.enable = true;
};
2020-10-24 21:48:02 -05:00
console = {
earlySetup = true;
colors = [
"111111"
"f92672"
"a6e22e"
"f4bf75"
"66d9ef"
"ae81ff"
"a1efe4"
"f8f8f2"
"75715e"
"f92672"
"a6e22e"
"f4bf75"
"66d9ef"
"ae81ff"
"a1efe4"
"f9f8f5"
];
};
2020-10-24 09:06:34 -05:00
}