fix: incorrect gpg key and home-manager package location

This commit is contained in:
lily 2025-03-29 23:27:46 -04:00
parent f645b12a6e
commit fa9b64ed93
Signed by: lily
GPG key ID: 601F3263FBCBC4B9
8 changed files with 47 additions and 45 deletions

View file

@ -17,7 +17,7 @@ in {
user = {
name = "Lily Vex";
email = "lesson085@gmail.com";
signingKey = "Placeholder";
signingKey = "Lily Vex";
};
commit.gpgsign = true;
init.defaultBranch = "main";

View file

@ -58,7 +58,7 @@ in {
"$alt_super $super,Q,exit"
# Screenshot region
"$super SHIFT,S, exec, GRIM_DEFAULT_DIR=${config.home.homeDirectory}/Pictures/Screenshots/ ${pkgs.grim}/bin/grim -g \"$(${pkgs.slurp}/bin/slurp)\" - | wl-copy "
"$super,T, exec, ghostty"
"$super,T, exec, kitty"
"$super, L,exec, hyprlock --immediate"
"$super, B,exec, chromium"
"$super,F,fullscreen"

View file

@ -17,12 +17,8 @@
# You can also split up your configuration and import pieces of it here:
# ./nvim.nix
../applications/git.nix
../applications/chromium.nix
../applications/git.nix
../applications/zsh.nix
../applications/direnv.nix
../applications/vscode.nix
../applications/ghostty
../applications/hyprland
../applications/neovim
inputs.nixvim.homeManagerModules.nixvim
@ -56,14 +52,6 @@
home = {
username = "lily";
homeDirectory = "/home/lily";
packages = with pkgs; # installs a package
[
vesktop
inputs.zen-browser.packages."${system}".default
(prismlauncher.override {
jdks = [jdk23 jdk8 jdk17 jdk21];
})
];
};
# Add stuff for your user as you see fit:

View file

@ -1,4 +1,4 @@
{pkgs, ...}: {
{pkgs, inputs, ...}: {
imports = [
./main.nix
];
@ -15,5 +15,7 @@
};
home.packages = with pkgs; [
vesktop
inputs.zen-browser.packages."${system}".default
hyfetch
];
}