dotfiles/nod/common/default.nix

24 lines
677 B
Nix
Raw Normal View History

2023-12-25 11:04:01 +01:00
{ pkgs, ... }:
{
environment.motd = "";
home-manager = {
useGlobalPkgs = true;
2023-12-25 12:02:24 +01:00
config = {...}: {
2024-01-16 22:39:29 +01:00
frogeye = config.frogeye;
2023-12-25 11:04:01 +01:00
home.file = {
".ssh/authorized_keys" = {
# TODO Make an option and reuse at other places
text = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPE41gxrO8oZ5n3saapSwZDViOQphm6RzqgsBUyA88pU geoffrey@frogeye.fr";
};
};
};
};
2023-12-25 12:11:23 +01:00
nixpkgs.config.allowUnfree = true;
2023-12-25 11:04:01 +01:00
system.stateVersion = "23.11";
terminal.font = "${
pkgs.nerdfonts.override {
fonts = [ "DejaVuSansMono" ];
}}/share/fonts/truetype/NerdFonts/DejaVuSansMNerdFont-Regular.ttf";
time.timeZone = "Europe/Amsterdam";
}