2024-04-28 22:30:09 +03:00
|
|
|
{
|
|
|
|
description = "Home Manager configuration of gkaklas";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-04-28 22:35:56 +03:00
|
|
|
|
2024-04-28 22:38:33 +03:00
|
|
|
nix-flatpak.url = "github:gmodena/nix-flatpak";
|
|
|
|
|
2024-04-28 22:35:56 +03:00
|
|
|
plasma-manager = {
|
|
|
|
url = "github:pjones/plasma-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.home-manager.follows = "home-manager";
|
|
|
|
};
|
2024-08-03 16:50:12 +03:00
|
|
|
nixvim.url = "github:nix-community/nixvim";
|
|
|
|
nixvim.inputs.nixpkgs.follows = "nixpkgs";
|
2024-04-28 22:30:09 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = {
|
|
|
|
nixpkgs,
|
|
|
|
home-manager,
|
2024-04-28 22:35:56 +03:00
|
|
|
plasma-manager,
|
2024-04-28 22:38:33 +03:00
|
|
|
nix-flatpak,
|
2024-08-03 16:50:12 +03:00
|
|
|
nixvim,
|
2024-04-28 22:30:09 +03:00
|
|
|
...
|
|
|
|
}: let
|
|
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
in {
|
|
|
|
homeConfigurations."gkaklas" = home-manager.lib.homeManagerConfiguration {
|
|
|
|
inherit pkgs;
|
|
|
|
modules = [
|
|
|
|
./home.nix
|
2024-04-28 22:52:41 +03:00
|
|
|
./config.nix
|
2024-04-28 22:44:52 +03:00
|
|
|
./packages.nix
|
2024-04-28 22:38:33 +03:00
|
|
|
./flatpak.nix
|
2024-08-03 16:46:41 +03:00
|
|
|
nix-flatpak.homeManagerModules.nix-flatpak
|
2024-04-28 22:35:56 +03:00
|
|
|
./plasma/plasma.nix
|
|
|
|
plasma-manager.homeManagerModules.plasma-manager
|
2024-08-03 16:46:41 +03:00
|
|
|
|
2024-08-03 16:50:12 +03:00
|
|
|
nixvim.homeManagerModules.nixvim
|
|
|
|
./nixvim/nixvim.nix
|
2024-04-28 22:30:09 +03:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|