mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-25 21:30:52 +01:00
38 lines
667 B
Nix
38 lines
667 B
Nix
{ config, pkgs, sops-nix, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
./users/default.nix
|
|
./users/julien.nix
|
|
];
|
|
luj.nix.enable = true;
|
|
luj.secrets.enable = true;
|
|
luj.ssh-server.enable = true;
|
|
|
|
sops.defaultSopsFile = ./secrets/secrets.yaml;
|
|
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
|
|
|
time.timeZone = "Europe/Paris";
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
console = {
|
|
font = "Lat2-Terminus16";
|
|
keyMap = "fr";
|
|
};
|
|
|
|
|
|
programs.mosh.enable = true;
|
|
programs.gnupg.agent.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
rxvt_unicode
|
|
xorg.xbacklight
|
|
neovim
|
|
];
|
|
|
|
environment.variables.EDITOR = "nvim";
|
|
|
|
|
|
|
|
}
|