1
0
Fork 0
pvv-nixos-config/base.nix

82 lines
1.7 KiB
Nix
Raw Normal View History

{ config, pkgs, inputs, ... }:
2021-12-18 22:07:27 +01:00
{
imports = [
./users
];
networking.domain = "pvv.ntnu.no";
2021-12-18 22:24:22 +01:00
networking.useDHCP = false;
networking.search = [ "pvv.ntnu.no" "pvv.org" ];
services.resolved = {
enable = true;
dnssec = "false"; # Supposdly this keeps breaking and the default is to allow downgrades anyways...
};
2021-12-18 22:07:27 +01:00
time.timeZone = "Europe/Oslo";
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "no";
};
system.autoUpgrade = {
enable = true;
flake = "git+https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git";
flags = [
"--update-input" "nixpkgs"
"--update-input" "unstable"
"--no-write-lock-file"
];
};
2022-04-02 00:57:53 +02:00
nix.gc.automatic = true;
nix.gc.options = "--delete-older-than 2d";
2022-04-02 00:57:53 +02:00
2022-12-07 10:02:56 +01:00
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# This makes commandline tools like nix run nixpkgs#hello
# and nix-shell -p hello use the same channel the system was built with
nix.registry = {
nixpkgs.flake = inputs.nixpkgs;
};
nix.nixPath = [
"nixpkgs=${inputs.nixpkgs}"
"nixpkgs-overlays=${./overlays-compat}/"
];
# Allows access to nixpkgs-unstable via pkgs.unstable
nixpkgs.overlays = let
unstable-overlay = final: prev: {
unstable = inputs.unstable.legacyPackages.${prev.system};
};
in [
unstable-overlay
];
2021-12-18 22:07:27 +01:00
environment.systemPackages = with pkgs; [
2022-09-08 17:49:33 +02:00
file
2021-12-18 22:07:27 +01:00
git
2022-09-08 17:49:33 +02:00
htop
2021-12-18 22:07:27 +01:00
nano
tmux
2022-09-08 17:49:33 +02:00
vim
wget
2021-12-18 22:07:27 +01:00
kitty.terminfo
];
2022-04-02 01:52:13 +02:00
users.groups."drift".name = "drift";
services.openssh = {
enable = true;
permitRootLogin = "yes";
extraConfig = ''
PubkeyAcceptedAlgorithms=+ssh-rsa
'';
};
2021-12-18 22:07:27 +01:00
}