devos/profiles/core/default.nix

122 lines
2.5 KiB
Nix
Raw Normal View History

{ self, config, lib, pkgs, ... }:
2020-01-04 06:06:31 +01:00
let inherit (lib) fileContents;
2020-07-31 06:17:28 +02:00
in
{
2022-05-10 21:16:20 +02:00
# Cachix
nix = {
binaryCaches = [
2022-07-03 01:06:34 +02:00
"https://cache.nixos.org/"
2022-05-10 21:16:20 +02:00
"https://nix-community.cachix.org"
];
binaryCachePublicKeys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
# For rage encryption, all hosts need a ssh key pair
services.openssh = {
enable = true;
openFirewall = lib.mkDefault false;
};
# This is just a representation of the nix default
2020-01-04 06:06:31 +01:00
nix.systemFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
2021-07-20 16:32:12 +02:00
nix.registry.nixpkgs.flake = self.inputs.nixos;
2021-09-24 21:45:39 +02:00
nix.registry.latest.flake = self.inputs.latest;
2021-07-27 11:50:57 +02:00
# Fix zsh autocompletion with home-manager
environment.pathsToLink = [ "/share/zsh" ];
2022-02-26 14:03:39 +01:00
# We set this via home-manager
environment.variables.EDITOR = "$EDITOR";
2021-12-27 22:57:16 +01:00
services.logind.lidSwitch = "ignore";
2022-07-03 01:06:34 +02:00
services.logind.extraConfig = ''
# dont shutdown when power button is short-pressed
HandlePowerKey=ignore
'';
2021-07-27 11:50:57 +02:00
environment = {
systemPackages = with pkgs; [
2022-02-20 18:19:05 +01:00
agenix
binutils
coreutils
psmisc
2021-12-27 22:57:16 +01:00
asciinema
curl
2020-08-02 21:28:41 +02:00
direnv
2022-01-02 23:51:30 +01:00
exa
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
2021-06-30 16:50:07 +02:00
bottom
2019-12-17 05:13:33 +01:00
gptfdisk
2021-05-08 11:49:42 +02:00
file
iputils
2020-07-21 02:04:37 +02:00
jq
2020-12-16 22:48:40 +01:00
manix
moreutils
2022-01-02 23:51:30 +01:00
yt-dlp
nix-index
2021-04-06 20:59:09 +02:00
tmux
2020-07-07 02:25:32 +02:00
nmap
ripgrep
2021-03-15 04:49:35 +01:00
skim
2021-02-03 06:46:12 +01:00
tealdeer
2020-07-07 02:25:32 +02:00
whois
2021-11-11 11:07:43 +01:00
p7zip
wget
xxd
imagemagick
2021-11-21 18:11:11 +01:00
nushell
2021-04-13 09:02:39 +02:00
2021-07-27 11:50:57 +02:00
nixpkgs-fmt
2021-08-27 14:43:53 +02:00
nvfetcher
2021-04-13 09:02:39 +02:00
libqalculate
];
};
fonts = {
2021-06-03 11:57:39 +02:00
fonts = with pkgs; [ powerline-fonts dejavu_fonts twitter-color-emoji ];
fontconfig.defaultFonts = {
monospace = [ "DejaVu Sans Mono for Powerline" ];
sansSerif = [ "DejaVu Sans" ];
2021-06-03 11:57:39 +02:00
emoji = [ "Twitter Color Emoji" ];
};
};
nix = {
# Improve nix store disk usage
autoOptimiseStore = true;
gc.automatic = true;
optimise.automatic = true;
# Prevents impurities in builds
useSandbox = true;
# give root and @wheel special privileges with nix
trustedUsers = [ "root" "@wheel" ];
# Generally useful nix option defaults
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
# Service that makes Out of Memory Killer more effective
services.earlyoom.enable = true;
2020-01-06 08:38:12 +01:00
users.mutableUsers = false;
2021-05-30 19:49:22 +02:00
console.keyMap = "pl";
}