1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 23:00:39 +02:00

feat: reenable immich with native module, prepare nixos-extra-modules update

This commit is contained in:
oddlama 2025-09-13 20:18:54 +02:00
parent ef2f2a9b77
commit 157c303f38
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
25 changed files with 1521 additions and 184 deletions

View file

@ -0,0 +1,38 @@
{ pkgs, ... }:
{
system.stateVersion = "24.11";
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
console.keyMap = "de-latin1-nodeadkeys";
boot.loader.systemd-boot.enable = true;
users.users.root = {
password = "nixos";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA5Uq+CDy5Pmt3If5M6d8K/Q7HArU6sZ7sgoj3T521Wm"
];
};
environment = {
variables.EDITOR = "nvim";
systemPackages = with pkgs; [
neovim
git
tmux
parted
ripgrep
fzf
wget
curl
];
etc.issue.text = ''
\d \t
This is \e{cyan}\n\e{reset} [\e{lightblue}\l\e{reset}] (\s \m \r)
\e{halfbright}\4\e{reset} \e{halfbright}\6\e{reset}
'';
};
}