- Change each submodule to use my own remote
- Readd color themeing I forgor to commit :< - Get really confused about gnupg
This commit is contained in:
parent
7d8b46f018
commit
8533784d83
|
@ -1,9 +1,9 @@
|
||||||
[submodule "slstatus"]
|
[submodule "slstatus"]
|
||||||
path = slstatus
|
path = slstatus
|
||||||
url = git://git.suckless.org/slstatus
|
url = https://git.fallingsky.love/fallingsky04/slstatus.git
|
||||||
[submodule "dwm"]
|
[submodule "dwm"]
|
||||||
path = dwm
|
path = dwm
|
||||||
url = git://git.suckless.org/dwm
|
url = https://git.fallingsky.love/fallingsky04/dwm.git
|
||||||
[submodule "st"]
|
[submodule "st"]
|
||||||
path = st
|
path = st
|
||||||
url = https://git.suckless.org/st
|
url = https://git.fallingsky.love/fallingsky04/st.git
|
||||||
|
|
|
@ -95,7 +95,6 @@ clipcatd &
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
obsidian
|
obsidian
|
||||||
(callPackage (./rolldice/default.nix) {})
|
(callPackage (./rolldice/default.nix) {})
|
||||||
gnupg
|
|
||||||
clang-tools
|
clang-tools
|
||||||
rclone
|
rclone
|
||||||
trash-cli
|
trash-cli
|
||||||
|
@ -302,6 +301,7 @@ clipcatd &
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
wireguard-tools
|
wireguard-tools
|
||||||
|
pinentry
|
||||||
pulseaudio
|
pulseaudio
|
||||||
bash
|
bash
|
||||||
vim
|
vim
|
||||||
|
@ -330,6 +330,13 @@ clipcatd &
|
||||||
# Enable the OpenSSH daemon.
|
# Enable the OpenSSH daemon.
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
|
|
||||||
|
# https://discourse.nixos.org/t/cant-get-gnupg-to-work-no-pinentry/15373/19
|
||||||
|
services.pcscd.enable = true;
|
||||||
|
programs.gnupg.agent = {
|
||||||
|
enable = true;
|
||||||
|
pinentryFlavor = "tty";
|
||||||
|
};
|
||||||
|
|
||||||
# Open ports in the firewall.
|
# Open ports in the firewall.
|
||||||
# networking.firewall.allowedTCPPorts = [ ... ];
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||||
# networking.firewall.allowedUDPPorts = [ ... ];
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||||
|
|
2
dwm
2
dwm
|
@ -1 +1 @@
|
||||||
Subproject commit 5d30ee7db5800ccbc7d99ef718d133cb9fddc420
|
Subproject commit 9397c7c7caaf7b08635f15360e7aeaf71f547fff
|
Loading…
Reference in New Issue