Add configuration for raspi
This commit is contained in:
parent
d8b632ac70
commit
48e842cc03
2 changed files with 23 additions and 1 deletions
|
@ -38,7 +38,6 @@ in
|
||||||
home = {
|
home = {
|
||||||
username = username;
|
username = username;
|
||||||
homeDirectory = "/home/${username}";
|
homeDirectory = "/home/${username}";
|
||||||
language.base = "eo.utf8";
|
|
||||||
packages = [
|
packages = [
|
||||||
pkgs.bitwarden-desktop # TODO: switch to rbw
|
pkgs.bitwarden-desktop # TODO: switch to rbw
|
||||||
# pkgs.cacert - TODO: should be used on NixOS
|
# pkgs.cacert - TODO: should be used on NixOS
|
||||||
|
|
23
home-manager/raspi/home.nix
Normal file
23
home-manager/raspi/home.nix
Normal 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;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue