marleyos/flake.nix

107 lines
2.4 KiB
Nix
Raw Normal View History

{
description = "marleyOS";
2024-12-03 02:51:46 +00:00
outputs = inputs:
inputs.snowfall-lib.mkFlake {
inherit inputs;
src = ./.;
snowfall = {
namespace = "marleyos";
title = "marleyOS";
};
channels-config = {
allowUnfree = true;
};
overlays = with inputs; [
lix.overlays.default
2025-01-12 00:21:42 +00:00
nur.overlays.default
marleyvim.overlays.default
];
systems.modules.nixos = with inputs; [
rose-pine.nixosModules.rose-pine
];
systems.modules.darwin = with inputs; [
lix.nixosModules.default
];
2024-11-16 03:52:27 +00:00
homes.modules = with inputs; [
rose-pine.homeManagerModules.rose-pine
];
2024-11-16 03:52:27 +00:00
outputs-builder = channels: {
2024-11-25 05:31:46 +00:00
formatter = channels.nixpkgs.alejandra;
};
2024-11-18 00:29:23 +00:00
alias = {
shells.default = "nix";
};
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2024-11-22 05:27:08 +00:00
unstable.url = "github:nixos/nixpkgs/nixos-unstable";
2025-01-12 00:21:42 +00:00
nur = {
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs";
};
lix = {
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.1-1.tar.gz";
inputs.nixpkgs.follows = "nixpkgs";
};
snowfall-lib = {
url = "github:snowfallorg/lib";
inputs.nixpkgs.follows = "nixpkgs";
};
darwin = {
url = "github:LnL7/nix-darwin";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-10-19 16:42:19 +00:00
nixgl = {
url = "github:nix-community/nixGL";
inputs.nixpkgs.follows = "nixpkgs";
};
rose-pine.url = "git+https://codewith.babesonthe.net/punkfairie/rose-pine-nix";
2024-11-03 07:10:01 +00:00
marleyvim.url = "git+https://codewith.babesonthe.net/punkfairie/marleyvim";
2024-11-22 05:27:08 +00:00
2025-01-09 16:08:30 +00:00
wezterm = {
url = "github:wez/wezterm?dir=nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-11-03 07:10:01 +00:00
# Rose pine themes that aren't included in the above flake:
# 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;
};
2025-01-12 05:11:41 +00:00
rose-pine-hyprcursor.url = "github:ndom91/rose-pine-hyprcursor";
2024-11-18 03:01:26 +00:00
# Rofi
rofi-themes = {
url = "git+https://codewith.babesonthe.net/punkfairie/rofi-themes";
flake = false;
};
};
}