2024-10-18 17:38:09 -07:00
|
|
|
{
|
|
|
|
description = "marleyOS";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-10-19 09:42:19 -07:00
|
|
|
|
2024-11-03 11:33:32 -08:00
|
|
|
# nixgl.url = "github:nix-community/nixGL";
|
2024-11-02 22:21:19 -07:00
|
|
|
|
2024-10-19 17:25:26 -07:00
|
|
|
rose-pine.url = "git+https://git.punkfairie.net/punkfairie/rose-pine-nix";
|
2024-11-03 00:10:01 -07:00
|
|
|
|
|
|
|
# Rose pine themes that aren't included in the above flake:
|
|
|
|
rose-pine-amfora = {
|
|
|
|
url = "github:rose-pine/amfora";
|
|
|
|
flake = false;
|
|
|
|
};
|
2024-11-03 13:16:43 -08:00
|
|
|
rose-pine-qt5ct = {
|
|
|
|
url = "github:piperbly/rose-pine-qt5ct";
|
|
|
|
flake = false;
|
|
|
|
};
|
2024-10-18 17:38:09 -07:00
|
|
|
};
|
|
|
|
|
2024-11-02 15:35:48 -07:00
|
|
|
outputs =
|
|
|
|
{
|
|
|
|
nixpkgs,
|
|
|
|
home-manager,
|
|
|
|
...
|
|
|
|
}@inputs:
|
|
|
|
{
|
|
|
|
homeConfigurations."marley" =
|
|
|
|
let
|
|
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
in
|
|
|
|
home-manager.lib.homeManagerConfiguration {
|
|
|
|
inherit pkgs;
|
2024-10-18 17:38:09 -07:00
|
|
|
|
2024-11-03 11:33:32 -08:00
|
|
|
extraSpecialArgs = # with inputs;
|
|
|
|
{
|
|
|
|
# inherit nixgl;
|
|
|
|
inherit inputs;
|
|
|
|
};
|
2024-11-02 22:21:19 -07:00
|
|
|
|
2024-11-02 15:35:48 -07:00
|
|
|
modules = [
|
|
|
|
inputs.rose-pine.homeManagerModules.rose-pine
|
2024-11-03 18:48:50 -08:00
|
|
|
./modules/home/shellAbbrs.nix
|
2024-11-03 20:13:11 -08:00
|
|
|
./modules/home/iconTheme.nix
|
2024-11-03 18:48:50 -08:00
|
|
|
./home
|
2024-11-02 15:35:48 -07:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2024-10-18 17:38:09 -07:00
|
|
|
}
|