nod: First attempt

This commit is contained in:
Geoffrey Frogeye 2023-12-25 11:04:01 +01:00
parent ec1d120f12
commit f94e741948
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
5 changed files with 40 additions and 6 deletions

22
nod/common/default.nix Normal file
View file

@ -0,0 +1,22 @@
{ pkgs, ... }:
{
environment.motd = "";
home-manager = {
useGlobalPkgs = true;
config = {}: {
imports = [ ../hm ];
home.file = {
".ssh/authorized_keys" = {
# TODO Make an option and reuse at other places
text = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPE41gxrO8oZ5n3saapSwZDViOQphm6RzqgsBUyA88pU geoffrey@frogeye.fr";
};
};
};
};
system.stateVersion = "23.11";
terminal.font = "${
pkgs.nerdfonts.override {
fonts = [ "DejaVuSansMono" ];
}}/share/fonts/truetype/NerdFonts/DejaVuSansMNerdFont-Regular.ttf";
time.timeZone = "Europe/Amsterdam";
}