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