This commit is contained in:
iFargle 2023-08-15 11:17:58 +09:00
parent 639382393e
commit 1c67ac1451
3 changed files with 5 additions and 5 deletions

View file

@ -47,6 +47,9 @@ Repo for nix configuration files
1. `home-manager/firefox.nix` - Change the entry under "# Theming" 1. `home-manager/firefox.nix` - Change the entry under "# Theming"
# GPG Keys # 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` 1. Import your GPG key `albert.key`
2. Add it to your GPG Keyring via `gpg --import 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` 3. Mark it as ultimately trusted via `gpg --edit-key albert@sysctl.io`, then type `trust`, then `5`

View file

@ -1,4 +1,4 @@
{ ... }: { { hostname, ... }: {
home.file = { home.file = {
".config/hypr/hyprland.conf" = { ".config/hypr/hyprland.conf" = {
enable = true; enable = true;
@ -192,8 +192,4 @@
"; ";
}; };
}; };
# Waybar Configs:
imports = [
../../../desktops/hyprland/waybar/gruvbox.nix
];
} }

View file

@ -4,6 +4,7 @@
# Host specific Configs: # Host specific Configs:
# ../../hosts/${hostname}/home-manager/gnome-dconf.nix # ../../hosts/${hostname}/home-manager/gnome-dconf.nix
../../hosts/${hostname}/home-manager/hyprland-conf.nix ../../hosts/${hostname}/home-manager/hyprland-conf.nix
../../hosts/${hostname}/home-manager/waybar-conf.nix
# Universal Configs: # Universal Configs:
../../home-manager/git.nix ../../home-manager/git.nix