Backup:)
This commit is contained in:
parent
61a03c40d4
commit
0047769696
|
@ -5,7 +5,6 @@ in
|
||||||
programs.password-store = {
|
programs.password-store = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings.PASSWORD_STORE_DIR = storePath;
|
settings.PASSWORD_STORE_DIR = storePath;
|
||||||
package = pkgs.pass;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
services.pass-secret-service = {
|
services.pass-secret-service = {
|
||||||
|
@ -17,5 +16,6 @@ in
|
||||||
pkgs.wofi-pass
|
pkgs.wofi-pass
|
||||||
];
|
];
|
||||||
|
|
||||||
|
programs.browserpass.enable = config.programs.firefox.enable;
|
||||||
satellite.persistence.at.data.apps.pass.directories = [ storePath ];
|
satellite.persistence.at.data.apps.pass.directories = [ storePath ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,7 @@ let
|
||||||
ublock-origin
|
ublock-origin
|
||||||
unpaywall
|
unpaywall
|
||||||
user-agent-string-switcher
|
user-agent-string-switcher
|
||||||
|
browserpass # Password store support
|
||||||
];
|
];
|
||||||
# }}}
|
# }}}
|
||||||
in
|
in
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
./features/cli/pass.nix
|
./features/cli/pass.nix
|
||||||
./features/neovim
|
./features/neovim
|
||||||
|
|
||||||
./features/xorg/xmonad.nix
|
# ./features/xorg/xmonad.nix
|
||||||
./features/wayland/hyprland
|
./features/wayland/hyprland
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
"R15-5365".psk = "@TG_WIFI_HOME_PASS@";
|
"R15-5365".psk = "@TG_WIFI_HOME_PASS@";
|
||||||
|
|
||||||
"Sailhorse".psk = "@NL_PLACE_0_PASS@";
|
"Sailhorse".psk = "@NL_PLACE_0_PASS@";
|
||||||
|
"InfoEdu12".psk = "@INFOEDU_PASS@";
|
||||||
|
|
||||||
# [Working solution](https://bbs.archlinux.org/viewtopic.php?id=271336)
|
# [Working solution](https://bbs.archlinux.org/viewtopic.php?id=271336)
|
||||||
# [Other interesting link](https://help.itc.rwth-aachen.de/en/service/b3d9a2c8ae5345b8b8f5128143ef4e3c/article/eaf6d69389a74a5a839c1f383c508df7/)
|
# [Other interesting link](https://help.itc.rwth-aachen.de/en/service/b3d9a2c8ae5345b8b8f5128143ef4e3c/article/eaf6d69389a74a5a839c1f383c508df7/)
|
||||||
|
|
Binary file not shown.
|
@ -19,7 +19,8 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
# Set default display manager
|
# 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;
|
stylix.targets.lightdm.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
|
import = [ ../touchpad.nix ];
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
|
|
||||||
../common/optional/pipewire.nix
|
../common/optional/pipewire.nix
|
||||||
../common/optional/greetd.nix
|
../common/optional/greetd.nix
|
||||||
|
# ../common/optional/xmonad
|
||||||
|
# ../common/optional/lightdm.nix
|
||||||
../common/optional/steam.nix
|
../common/optional/steam.nix
|
||||||
../common/optional/slambda.nix
|
../common/optional/slambda.nix
|
||||||
../common/optional/xdg-portal.nix
|
../common/optional/xdg-portal.nix
|
||||||
|
@ -35,4 +37,10 @@
|
||||||
# TODO: is this useful outside of home-manager?
|
# TODO: is this useful outside of home-manager?
|
||||||
stylix.targets.gtk.enable = true;
|
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
|
||||||
|
'';
|
||||||
|
# }}}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue