nixos-config/2configs/default.nix

94 lines
2.1 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2016-10-20 20:54:38 +02:00
with import <stockholm/lib>;
{
2015-08-07 13:51:49 +02:00
imports = [
{
2017-05-02 14:05:06 +02:00
users.users =
2015-08-07 13:51:49 +02:00
mapAttrs (_: h: { hashedPassword = h; })
2015-10-01 18:49:16 +02:00
(import <secrets/hashedPasswords.nix>);
2015-08-07 13:51:49 +02:00
}
./editor/vim.nix
2016-07-14 22:31:27 +02:00
./binary-cache/nixos.nix
./minimal.nix
2022-01-26 18:02:35 +01:00
./security/hotfix.nix
2015-08-07 13:51:49 +02:00
];
# users are super important
users.users = {
root = {
openssh.authorizedKeys.keys = [ config.krebs.users.makefu.pubkey ];
};
makefu = {
uid = 9001;
group = "users";
home = "/home/makefu";
createHome = true;
isNormalUser = true;
useDefaultShell = true;
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [ config.krebs.users.makefu.pubkey ];
};
};
2020-01-23 23:51:05 +01:00
nix.trustedUsers = [ config.krebs.build.user.name ];
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages;
2015-08-13 17:13:13 +02:00
2019-09-04 20:17:56 +02:00
nixpkgs.config.allowUnfreePredicate = pkg: packageName pkg == "unrar";
krebs = {
enable = true;
2015-08-07 12:10:02 +02:00
dns.providers.lan = "hosts";
build.user = config.krebs.users.makefu;
};
boot.tmpOnTmpfs = true;
environment.systemPackages = with pkgs; [
2015-07-29 01:07:41 +02:00
jq
git
gnumake
rxvt_unicode.terminfo
2015-08-13 17:13:13 +02:00
htop
];
programs.bash.enableCompletion = true;
environment.shellAliases = {
2017-05-02 14:05:06 +02:00
# TODO: see .aliases
lsl = "ls -lAtr";
2021-03-12 20:24:40 +01:00
ip = "ip -c -br";
2020-01-23 23:51:05 +01:00
dmesg = "dmesg -L --reltime";
psg = "ps -ef | grep";
nmap = "nmap -oN $HOME/loot/scan-`date +\%s`.nmap -oX $HOME/loot/scan-`date +%s`.xml";
grep = "grep --color=auto";
};
nixpkgs.config.packageOverrides = pkgs: {
nano = pkgs.runCommand "empty" {} "mkdir -p $out";
2016-03-16 08:39:58 +01:00
tinc = pkgs.tinc_pre;
};
2016-05-02 17:38:27 +02:00
nix.extraOptions = ''
auto-optimise-store = true
'';
#security.wrappers.sendmail = {
# source = "${pkgs.exim}/bin/sendmail";
# setuid = true;
#};
services.journald.extraConfig = ''
SystemMaxUse=1G
RuntimeMaxUse=128M
'';
2019-01-21 11:17:27 +01:00
environment.pathsToLink = [ "/share" ];
2020-04-22 16:36:44 +02:00
security.acme = {
email = "letsencrypt@syntax-fehler.de";
acceptTerms = true;
};
2020-07-02 08:20:15 +02:00
system.stateVersion = lib.mkDefault "20.03";
}