Improve sops on ll-latitude-e5591

This commit is contained in:
Lauren Lagarde 2025-07-19 16:57:15 -05:00
parent b846f72d5d
commit c20c084eb6
3 changed files with 8 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ ... }: {
{ pkgs, ... }: {
# Noting for other places
# home.stateVersion = "24.11";
@ -9,6 +9,10 @@
./programs/bash.nix
];
home.packages = with pkgs; [
sops
];
# Self-hosting
programs.bash.enable = true;
programs.home-manager.enable = true;

View file

@ -1,6 +1,7 @@
{ pkgs, ... }: {
programs.vim = {
enable = true;
defaultEditor = true;
plugins = with pkgs.vimPlugins; [
rainbow
nerdtree nerdtree-git-plugin

View file

@ -1,4 +1,6 @@
{ pkgs, ... }: {
home.stateVersion = "24.11";
imports = [
../../home-manager/programs/thunderbird.nix
];