Compare commits
5 commits
f32d23295c
...
550972f9a7
Author | SHA1 | Date | |
---|---|---|---|
550972f9a7 | |||
537f02aa4f | |||
c22b92f412 | |||
5cac1c2482 | |||
89b57dc185 |
6 changed files with 19 additions and 8 deletions
|
@ -23,3 +23,4 @@ each host should have these files:
|
|||
- sddm x11 support, too. or maybe just remove x11
|
||||
- gnome-keyring basic libsecret support works, add ssh too plz :heart:
|
||||
- git gpg signing
|
||||
- hyprcursor
|
|
@ -9,6 +9,7 @@ in {
|
|||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
hm.services.gnome-keyring.enable = true;
|
||||
hm.services.gnome-keyring.components = [ "secrets" ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -157,6 +157,9 @@ in {
|
|||
"float, initialTitle:^Select a file to open$"
|
||||
"center, initialTitle:^Select a file to open$"
|
||||
"size 1100 650, initialTitle:^Select a file to open$"
|
||||
"float, initialTitle:^File Upload$"
|
||||
"center, initialTitle:^File Upload$"
|
||||
"size 1100 650, initialTitle:^File Upload$"
|
||||
# https://github.com/hyprwm/Hyprland/issues/6154
|
||||
"center, class:^gcr-prompter"
|
||||
"center, class:^pinentry-"
|
||||
|
|
|
@ -48,13 +48,13 @@ in {
|
|||
name = "Catppuccin Mocha";
|
||||
extension = pkgs.vscode-extensions.catppuccin.catppuccin-vsc;
|
||||
#extension = (pkgs.vscode-extensions.catppuccin.catppuccin-vsc.override {
|
||||
# accent = accent;
|
||||
# boldKeywords = false;
|
||||
# italicComments = false;
|
||||
# italicKeywords = false;
|
||||
# extraBordersEnabled = false;
|
||||
# workbenchMode = "flat";
|
||||
# bracketMode = "rainbow";
|
||||
#accent = accent;
|
||||
#boldKeywords = false;
|
||||
#italicComments = false;
|
||||
#italicKeywords = false;
|
||||
#extraBordersEnabled = false;
|
||||
#workbenchMode = "flat";
|
||||
#bracketMode = "rainbow";
|
||||
#});
|
||||
};
|
||||
iconTheme = {
|
||||
|
|
|
@ -12,6 +12,8 @@ in {
|
|||
hm.programs.gpg.enable = true;
|
||||
hm.services.gpg-agent = {
|
||||
enable = true;
|
||||
enableExtraSocket = true;
|
||||
enableSshSupport = true;
|
||||
|
||||
pinentryPackage = pkgs.pinentry-gnome3;
|
||||
};
|
||||
|
|
|
@ -11,6 +11,10 @@ in {
|
|||
config = mkIf cfg.enable {
|
||||
hm.programs.mpv = {
|
||||
enable = true;
|
||||
|
||||
config = {
|
||||
hwdec = "auto";
|
||||
};
|
||||
|
||||
scripts = with pkgs.mpvScripts; [
|
||||
mpris
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue