Compare commits

..

No commits in common. "226a7a15595cee1c3a8da2359770763a3bfb83ef" and "9cf19104eddc7ffbadad2ecc341fa94a08deb26f" have entirely different histories.

3 changed files with 2 additions and 33 deletions

View File

@ -41,22 +41,6 @@
"type": "github" "type": "github"
} }
}, },
"nix-flatpak": {
"locked": {
"lastModified": 1711997201,
"narHash": "sha256-J71xzQlVYsjagA4AsVwRazhBh2rZrPpKvxTgs6UzL7c=",
"owner": "gmodena",
"repo": "nix-flatpak",
"rev": "b76fa31346db7fc958a9898f3c594696ca71c4fd",
"type": "github"
},
"original": {
"owner": "gmodena",
"ref": "v0.4.1",
"repo": "nix-flatpak",
"type": "github"
}
},
"nix-github-actions": { "nix-github-actions": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -138,7 +122,6 @@
"inputs": { "inputs": {
"home-manager": "home-manager", "home-manager": "home-manager",
"jovian": "jovian", "jovian": "jovian",
"nix-flatpak": "nix-flatpak",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"plasma-manager": "plasma-manager" "plasma-manager": "plasma-manager"
} }

View File

@ -13,7 +13,6 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager"; inputs.home-manager.follows = "home-manager";
}; };
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=v0.4.1";
}; };
# Define Outputs, import Modules # Define Outputs, import Modules
outputs = outputs =
@ -22,7 +21,6 @@
home-manager, home-manager,
jovian, jovian,
plasma-manager, plasma-manager,
nix-flatpak,
... ...
}: }:
let let
@ -33,7 +31,6 @@
# NixOS Modules for all hosts # NixOS Modules for all hosts
systemModules = [ systemModules = [
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
nix-flatpak.nixosModules.nix-flatpak
./modules/system/apps-shell ./modules/system/apps-shell
./modules/system/boot ./modules/system/boot
./modules/system/devices ./modules/system/devices
@ -80,10 +77,9 @@
./modules/system/controller ./modules/system/controller
./modules/system/jovian-${hostName} ./modules/system/jovian-${hostName}
./modules/system/lact ./modules/system/lact
./modules/system/plasma
./modules/system/retrodeck
./modules/system/steam
./modules/system/syncthing ./modules/system/syncthing
./modules/system/plasma
./modules/system/steam
./modules/system/sddm ./modules/system/sddm
{ {
# Device specific Home Manager Modules # Device specific Home Manager Modules
@ -122,7 +118,6 @@
./modules/system/jovian-${hostName} ./modules/system/jovian-${hostName}
./modules/system/lact ./modules/system/lact
./modules/system/plasma ./modules/system/plasma
./modules/system/retrodeck
./modules/system/steam ./modules/system/steam
./modules/system/syncthing ./modules/system/syncthing
{ {
@ -160,7 +155,6 @@
./modules/system/jovian-${hostName} ./modules/system/jovian-${hostName}
./modules/system/lact ./modules/system/lact
./modules/system/plasma ./modules/system/plasma
./modules/system/retrodeck
./modules/system/steam ./modules/system/steam
./modules/system/syncthing ./modules/system/syncthing
{ {

View File

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