2024-10-19 00:38:09 +00:00
|
|
|
{
|
|
|
|
description = "marleyOS";
|
|
|
|
|
2024-11-13 05:31:22 +00:00
|
|
|
outputs =
|
2024-11-15 05:28:56 +00:00
|
|
|
inputs:
|
|
|
|
inputs.snowfall-lib.mkFlake {
|
|
|
|
inherit inputs;
|
|
|
|
src = ./.;
|
|
|
|
|
|
|
|
snowfall = {
|
|
|
|
namespace = "marleyos";
|
|
|
|
title = "marleyOS";
|
|
|
|
};
|
2024-11-13 05:31:22 +00:00
|
|
|
|
2024-11-16 03:52:27 +00:00
|
|
|
homes.modules = with inputs; [
|
|
|
|
rose-pine.homeManagerModules.rose-pine
|
2024-11-13 05:31:22 +00:00
|
|
|
];
|
|
|
|
|
2024-11-16 03:52:27 +00:00
|
|
|
outputs-builder = channels: {
|
|
|
|
formatter = channels.nixpkgs.nixfmt-rfc-style;
|
2024-11-13 05:31:22 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-10-19 00:38:09 +00:00
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
|
2024-11-15 05:28:56 +00:00
|
|
|
snowfall-lib = {
|
|
|
|
url = "github:snowfallorg/lib";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2024-10-19 00:38:09 +00:00
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-10-19 16:42:19 +00:00
|
|
|
|
2024-11-14 04:06:04 +00:00
|
|
|
devenv.url = "github:cachix/devenv";
|
|
|
|
|
2024-11-12 05:23:32 +00:00
|
|
|
rose-pine.url = "git+https://codewith.babesonthe.net/punkfairie/rose-pine-nix";
|
2024-11-03 07:10:01 +00:00
|
|
|
|
|
|
|
# Rose pine themes that aren't included in the above flake:
|
2024-11-12 05:23:32 +00:00
|
|
|
# TODO: Integrate these to punkfairie/rose-pine-nix.
|
2024-11-03 07:10:01 +00:00
|
|
|
rose-pine-amfora = {
|
|
|
|
url = "github:rose-pine/amfora";
|
|
|
|
flake = false;
|
|
|
|
};
|
2024-11-03 21:16:43 +00:00
|
|
|
rose-pine-qt5ct = {
|
|
|
|
url = "github:piperbly/rose-pine-qt5ct";
|
|
|
|
flake = false;
|
|
|
|
};
|
2024-10-19 00:38:09 +00:00
|
|
|
};
|
|
|
|
}
|