1
0
Fork 0

Add configuration for raspi

This commit is contained in:
Ethan Reece 2025-07-17 15:08:01 -05:00
parent d8b632ac70
commit 48e842cc03
Signed by: me
GPG key ID: DD8CE04D5D8FF832
2 changed files with 23 additions and 1 deletions

View file

@ -38,7 +38,6 @@ in
home = {
username = username;
homeDirectory = "/home/${username}";
language.base = "eo.utf8";
packages = [
pkgs.bitwarden-desktop # TODO: switch to rbw
# pkgs.cacert - TODO: should be used on NixOS

View file

@ -0,0 +1,23 @@
# SPDX-FileCopyrightText: 2025 Ethan Reece <contact@ethanreece.com>
#
# SPDX-License-Identifier: MIT
{
config,
inputs,
lib,
pkgs,
...
}:
let
username = "ethanreece";
in
{
sops.age.keyFile = /home/${username}/.config/sops/age/keys.txt;
home = {
username = username;
homeDirectory = "/home/${username}";
};
targets.genericLinux.enable = true;
}