1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/common/default.nix

27 lines
408 B
Nix
Raw Normal View History

2024-01-09 15:55:29 +01:00
{ config, pkgs, lib, ... }:
2024-01-09 15:46:18 +01:00
2024-01-09 15:55:29 +01:00
with lib; {
2024-01-09 15:46:18 +01:00
imports = [
../users
../../modules
./networking.nix
./openssh.nix
];
environment.systemPackages = with pkgs; [
kitty.terminfo
bat
ripgrep
2024-01-09 16:23:24 +01:00
uutils-coreutils
2024-01-09 15:46:18 +01:00
git
bmon
bottom
man-pages
man-pages-posix
linux-manual
unzip
zip
];
system.stateVersion = "23.11";
time.timeZone = mkDefault "CET";
}