add comments ? and maybe other stuff idk

This commit is contained in:
Bit Borealis 2023-03-15 06:39:18 +00:00
parent 5c641cd8b2
commit 999f013f42
Signed by: theotheroracle
GPG Key ID: 2D816A2DCA6E5649
1 changed files with 12 additions and 0 deletions

View File

@ -1,5 +1,7 @@
# all my home stuff :3
{ configs, pkgs, lib, ... }:
{
# installing my packages uvu
home.packages = with pkgs; [
bat
# freetube
@ -20,6 +22,7 @@
# protonvpn-gui
wl-clipboard
adw-gtk3
# some bullshit to get gnome apps to install withotu a prefix
] ++ (with pkgs.gnome; with pkgs.gnomeExtensions; [
gnome-tweaks
dconf-editor
@ -27,6 +30,11 @@
rounded-window-corners
appindicator
]);
# dconf ??? for to configure gnome ???
programs.dconf.enable = true;
# uh configure pass or something
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
@ -35,6 +43,10 @@
PASSWORD_STORE_CLIP_TIME = "60";
};
};
# enable the pass browser extension client for firefox
programs.browserpass.enable = true;
# don't uh, change this or something might break lol idk
home.stateVersion = "22.11";
}