Add nix-flatpak module and configuration

Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
George Kaklamanos 2024-04-28 22:38:33 +03:00
parent d3773e4e4f
commit f95e75a3cb
No known key found for this signature in database
GPG key ID: C0CAB8A6BDC9399D
2 changed files with 36 additions and 0 deletions

View file

@ -9,6 +9,8 @@
inputs.nixpkgs.follows = "nixpkgs";
};
nix-flatpak.url = "github:gmodena/nix-flatpak";
plasma-manager = {
url = "github:pjones/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs";
@ -20,6 +22,7 @@
nixpkgs,
home-manager,
plasma-manager,
nix-flatpak,
...
}: let
system = "x86_64-linux";
@ -29,9 +32,11 @@
inherit pkgs;
modules = [
./home.nix
./flatpak.nix
./plasma/plasma.nix
plasma-manager.homeManagerModules.plasma-manager
nix-flatpak.homeManagerModules.nix-flatpak
];
};
};