Compare commits

..

2 Commits

Author SHA1 Message Date
Flake Bot
63ed2caee8 Bump flake.lock
Some checks are pending
Flake.lock / build (push) Waiting to run
Signed-off-by: Flake Bot <41898282+github-actions[bot]@users.noreply.github.com>
2024-08-27 14:31:38 +00:00
ddd6174dcd flatpak and app separate 2024-08-27 16:30:44 +02:00
6 changed files with 12 additions and 6 deletions

View File

@ -9,7 +9,7 @@ Mirrored on [gitea.chrayed.de](https://gitea.chrayed.de/moe1369/nixos-config)
- [X] Better autoupgrade
- [X] Bash/ZSH Settings
- [ ] ssh key deployment with [agenix](https://github.com/ryantm/agenix)
- [X] alternative way to declare .nix files instead of dumping them into configuration.nix
- [ ] alternative way to declare .nix files instead of dumping them into configuration.nix
- [x] Multi Host functionality for homelab - preferably [conditional implementation](https://nixos.wiki/wiki/Extend_NixOS#Conditional_Implementation)
- [ ] OCI container for common services
- [ ] Fix Home-Manager issues with immutable .config files during rebuild -> kglobalshortcutrc and kwinrc are the reason -> find workaround with plasma-manager
- [ ] Fix Home-Manager issues with immutable .config files during rebuild

View File

@ -78,6 +78,7 @@
./modules/system/apps-misc
./modules/system/browser
./modules/system/controller
./modules/system/flatpak
./modules/system/jovian-${hostName}
./modules/system/lact
./modules/system/plasma
@ -119,6 +120,7 @@
./modules/system/apps-misc
./modules/system/browser
./modules/system/controller
./modules/system/flatpak
./modules/system/jovian-${hostName}
./modules/system/lact
./modules/system/plasma
@ -157,6 +159,7 @@
./modules/system/apps-misc
./modules/system/browser
./modules/system/controller
./modules/system/flatpak
./modules/system/jovian-${hostName}
./modules/system/lact
./modules/system/plasma

View File

@ -0,0 +1,5 @@
{ ... }:
{
services.flatpak.enable = true;
services.flatpak.update.onActivation = true;
}

View File

@ -1,7 +1,5 @@
{ ... }:
{
services.flatpak.enable = true;
services.flatpak.update.onActivation = true;
services.flatpak.packages = [
{ appId = "net.retrodeck.retrodeck"; origin = "flathub"; }
];

View File

@ -5,7 +5,7 @@ system.autoUpgrade = {
dates = "04:00";
flake = "github:Moe1369/nixos-config#${hostName}";
flags = [
"--update-input" "nixpkgs" "--update-input" "home-manager" "--update-input" "jovian" "-L" "--update-input" "plasma-manager" "--update-input" "nix-flatpak" "--commit-lock-file"
"--update-input" "nixpkgs" "-L" "--commit-lock-file"
];
allowReboot = true;
};