devos/profiles/core/default.nix

72 lines
1.2 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2020-01-04 06:06:31 +01:00
let inherit (lib) fileContents;
2020-07-31 06:17:28 +02:00
in
{
nix.package = pkgs.nixFlakes;
2020-01-04 06:06:31 +01:00
nix.systemFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
environment = {
systemPackages = with pkgs; [
binutils
coreutils
curl
deploy-rs
2020-08-02 21:28:41 +02:00
direnv
dnsutils
2020-07-07 02:25:32 +02:00
dosfstools
fd
2021-04-06 13:37:40 +02:00
fzf
git
2021-04-06 13:37:40 +02:00
bat
neovim
2019-12-26 08:17:44 +01:00
gotop
2019-12-17 05:13:33 +01:00
gptfdisk
iputils
2020-07-21 02:04:37 +02:00
jq
2020-12-16 22:48:40 +01:00
manix
moreutils
nix-index
2021-04-06 20:59:09 +02:00
tmux
2020-07-07 02:25:32 +02:00
nmap
ripgrep
2020-07-07 02:25:32 +02:00
whois
2021-04-13 09:02:39 +02:00
2021-04-13 16:07:20 +02:00
imagemagick
youtube-dl
ffmpeg
2021-04-13 09:02:39 +02:00
libqalculate
];
};
fonts = {
2020-01-04 06:06:31 +01:00
fonts = with pkgs; [ powerline-fonts dejavu_fonts ];
fontconfig.defaultFonts = {
monospace = [ "DejaVu Sans Mono for Powerline" ];
sansSerif = [ "DejaVu Sans" ];
};
};
nix = {
autoOptimiseStore = true;
gc.automatic = true;
optimise.automatic = true;
useSandbox = true;
allowedUsers = [ "@wheel" ];
trustedUsers = [ "root" "@wheel" ];
extraOptions = ''
keep-outputs = true
keep-derivations = true
fallback = true
'';
};
2021-04-06 13:37:40 +02:00
time.timeZone = "Europe/Warsaw";
i18n.defaultLocale = "en_US.UTF-8";
2020-07-27 06:24:28 +02:00
services.earlyoom.enable = true;
2020-01-06 08:38:12 +01:00
users.mutableUsers = false;
}