1
Fork 0
This commit is contained in:
Matei Adriel 2023-07-30 02:22:25 +03:00
parent 61a03c40d4
commit 0047769696
No known key found for this signature in database
8 changed files with 15 additions and 3 deletions

View file

@ -5,7 +5,6 @@ in
programs.password-store = {
enable = true;
settings.PASSWORD_STORE_DIR = storePath;
package = pkgs.pass;
};
services.pass-secret-service = {
@ -17,5 +16,6 @@ in
pkgs.wofi-pass
];
programs.browserpass.enable = config.programs.firefox.enable;
satellite.persistence.at.data.apps.pass.directories = [ storePath ];
}

View file

@ -17,6 +17,7 @@ let
ublock-origin
unpaywall
user-agent-string-switcher
browserpass # Password store support
];
# }}}
in

View file

@ -10,7 +10,7 @@
./features/cli/pass.nix
./features/neovim
./features/xorg/xmonad.nix
# ./features/xorg/xmonad.nix
./features/wayland/hyprland
];

View file

@ -19,6 +19,7 @@
"R15-5365".psk = "@TG_WIFI_HOME_PASS@";
"Sailhorse".psk = "@NL_PLACE_0_PASS@";
"InfoEdu12".psk = "@INFOEDU_PASS@";
# [Working solution](https://bbs.archlinux.org/viewtopic.php?id=271336)
# [Other interesting link](https://help.itc.rwth-aachen.de/en/service/b3d9a2c8ae5345b8b8f5128143ef4e3c/article/eaf6d69389a74a5a839c1f383c508df7/)

View file

@ -19,7 +19,8 @@ in
};
# Set default display manager
services.xserver.displayManager.defaultSession = lib.mkDefault "hyprland";
# services.xserver.displayManager.defaultSession = lib.mkDefault "hyprland";
services.xserver.displayManager.defaultSession = lib.mkDefault "none+xmonad";
stylix.targets.lightdm.enable = true;
}

View file

@ -1,5 +1,6 @@
{ config, ... }:
{
import = [ ../touchpad.nix ];
services.xserver = {
enable = true;

View file

@ -5,6 +5,8 @@
../common/optional/pipewire.nix
../common/optional/greetd.nix
# ../common/optional/xmonad
# ../common/optional/lightdm.nix
../common/optional/steam.nix
../common/optional/slambda.nix
../common/optional/xdg-portal.nix
@ -35,4 +37,10 @@
# TODO: is this useful outside of home-manager?
stylix.targets.gtk.enable = true;
# }}}
# {{{ Some ad-hoc site blocking
networking.extraHosts = ''
127.0.0.1 twitter.com
127.0.0.1 www.reddit.com
'';
# }}}
}