forked from emily/nixfiles
26 lines
407 B
Nix
26 lines
407 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib; {
|
|
imports = [
|
|
../users
|
|
../../modules
|
|
./networking.nix
|
|
./openssh.nix
|
|
];
|
|
environment.systemPackages = with pkgs; [
|
|
kitty.terminfo
|
|
bat
|
|
ripgrep
|
|
utils-coreutils
|
|
git
|
|
bmon
|
|
bottom
|
|
man-pages
|
|
man-pages-posix
|
|
linux-manual
|
|
unzip
|
|
zip
|
|
];
|
|
system.stateVersion = "23.11";
|
|
time.timeZone = mkDefault "CET";
|
|
}
|