attempt to install sober with declarative-flatpak

This commit is contained in:
Gabriella Bere 2024-08-26 02:39:01 +01:00
parent 36b1cc8263
commit 2578538507
3 changed files with 21 additions and 1 deletions

12
home-manager/sober.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, ... }:
{
services.flatpak = {
packages = [
"sober:/root/sober.flatpakref"
# https://sober.vinegarhq.org/sober.flatpakref
];
remotes = [
"sober" = "https://sober.vinegarhq.org/"
]
};
}