flake.nix: remove eww and update

nix: remove eww overlay & conduwuit cache

vaultwarden: enable ssh key items
This commit is contained in:
notohh 2025-02-12 01:49:01 -05:00
parent 19e7878a8e
commit b7cd36173f
Signed by: notohh
GPG key ID: BD47506D475EE86D
4 changed files with 274 additions and 3151 deletions

3413
flake.lock generated

File diff suppressed because it is too large Load diff

View file

@ -86,13 +86,11 @@
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
atuin.url = "github:atuinsh/atuin";
flake-parts.url = "github:hercules-ci/flake-parts";
eww.url = "github:elkowar/eww";
anyrun.url = "github:Kirottu/anyrun";
botoh.url = "git+https://git.flake.sh/notohh/botoh";
catppuccin.url = "github:catppuccin/nix";
nixpkgs-xr.url = "github:nix-community/nixpkgs-xr";
prismlauncher.url = "github:PrismLauncher/PrismLauncher";
flocon.url = "git+https://git.nezia.dev/nezia/flocon";
manga-tui.url = "github:josueBarretogit/manga-tui";
spicetify-nix.url = "github:Gerg-L/spicetify-nix";
home-manager = {
@ -123,5 +121,9 @@
url = "github:jas-singhfsu/hyprpanel";
inputs.nixpkgs.follows = "nixpkgs";
};
flocon = {
url = "git+https://git.nezia.dev/nezia/flocon";
inputs.nixpkgs.follows = "nixpkgs";
};
};
}

View file

@ -15,7 +15,6 @@
inputs.hyprpicker.overlays.default
inputs.hyprwayland-scanner.overlays.default
inputs.atuin.overlays.default
inputs.eww.overlays.default
inputs.self.overlays.technorino
inputs.hyprpanel.overlay
];
@ -49,7 +48,6 @@
"https://anyrun.cachix.org"
"https://viperml.cachix.org"
"https://nix-community.cachix.org"
"https://attic.kennel.juneis.dog/conduwuit"
"https://prismlauncher.cachix.org"
];
trusted-public-keys = [
@ -60,7 +58,6 @@
"anyrun.cachix.org-1:pqBobmOjI7nKlsUMV25u9QHa9btJK65/C8vnO3p346s="
"viperml.cachix.org-1:qZhKBMTfmcLL+OG6fj/hzsMEedgKvZVFRRAhq7j8Vh8="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"conduwuit:BbycGUgTISsltcmH0qNjFR9dbrQNYgdIAcmViSGoVTE="
"prismlauncher.cachix.org-1:9/n/FGyABA2jLUVfY+DEp4hKds/rwO+SCOtbOkDzd+c="
];
};

View file

@ -11,6 +11,8 @@
config = {
DOMAIN = "https://vault.flake.sh/";
SIGNUPS_ALLOWED = false;
SIGNUPS_VERIFY = true;
SIGNUPS_VERIFY_RESEND_TIME = 3600;
DATABASE_URL = "postgresql://vaultwarden:vaultwarden@192.168.1.211:5432/vaultwarden";
LOG_LEVEL = "Info";
ROCKET_ADDRESS = "0.0.0.0";
@ -24,6 +26,7 @@
SMTP_FROM_NAME = "Vaultwarden";
SMTP_USERNAME = "vaultwarden-mailer";
SMTP_TIMEOUT = 15;
EXPERIMENTAL_CLIENT_FEATURE_FLAGS = "ssh-key-vault-item,ssh-agent";
};
environmentFile = config.sops.secrets.vaultwarden-env.path;
};