Merge branch 'main' of git.firelilith.org:lilith/nixos

This commit is contained in:
Lilith 2025-03-31 13:18:08 +02:00
commit 0f8de176b7
Signed by: lilith
GPG key ID: 8712A0F317C37175
10 changed files with 160 additions and 76 deletions

View file

@ -16,6 +16,8 @@
./syncthing.nix
./users.nix
./zsh.nix
./virtualization.nix
];
environment.systemPackages = with pkgs; [ distrobox ];

View file

@ -1,9 +1,12 @@
{...}: {
{ ... }:
{
time.timeZone = "Europe/Berlin";
environment.variables = {
EDITOR = "hx";
VISUAL = "hx";
FLAKE = "/home/lilith/nixos";
ELECTRON_OZONE_PLATFORM_HINT = "wayland";
};
}

View file

@ -15,8 +15,9 @@ in
hashedPasswordFile = config.sops.secrets."user/password".path;
};
remotebuilder = {
isSystemUser = true;
nixremote = {
isNormalUser = true;
createHome = false;
group = "users";
extraGroups = [ ];
openssh.authorizedKeys.keys = [

View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
virtualisation.podman = {
enable = true;
dockerCompat = true;
};
environment.systemPackages = [ pkgs.distrobox ];
}