diff --git a/README.md b/README.md index 8df2f944..c8b19d28 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,9 @@ Repo for nix configuration files 1. `home-manager/firefox.nix` - Change the entry under "# Theming" # GPG Keys +1. Import the user private key: `gpg import gpg/users/albert/privkey.asc` +2. Mark it as trusted: `gpg --edit-key albert@sysctl.io`, then type `trust`, then `5` + 1. Import your GPG key `albert.key` 2. Add it to your GPG Keyring via `gpg --import albert.key` 3. Mark it as ultimately trusted via `gpg --edit-key albert@sysctl.io`, then type `trust`, then `5` diff --git a/hosts/nixos-laptop/home-manager/hyprland-conf.nix b/hosts/nixos-laptop/home-manager/hyprland-conf.nix index 1a07399c..032f2c50 100644 --- a/hosts/nixos-laptop/home-manager/hyprland-conf.nix +++ b/hosts/nixos-laptop/home-manager/hyprland-conf.nix @@ -1,4 +1,4 @@ -{ ... }: { +{ hostname, ... }: { home.file = { ".config/hypr/hyprland.conf" = { enable = true; @@ -192,8 +192,4 @@ "; }; }; - # Waybar Configs: - imports = [ - ../../../desktops/hyprland/waybar/gruvbox.nix - ]; } \ No newline at end of file diff --git a/users/albert/home.nix b/users/albert/home.nix index 48f21fbe..3af3416f 100644 --- a/users/albert/home.nix +++ b/users/albert/home.nix @@ -4,6 +4,7 @@ # Host specific Configs: # ../../hosts/${hostname}/home-manager/gnome-dconf.nix ../../hosts/${hostname}/home-manager/hyprland-conf.nix + ../../hosts/${hostname}/home-manager/waybar-conf.nix # Universal Configs: ../../home-manager/git.nix