liminalOS/flake.nix

237 lines
6.1 KiB
Nix
Raw Normal View History

2024-07-11 03:56:19 -07:00
{
description = "System configuration flake.";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/b74a56e2acce8fe88a575287a20ac196d8d01938";
2024-09-03 22:07:28 -07:00
# stablepkgs.url = "github:nixos/nixpkgs/nixos-24.05";
# bleedingpkgs.url = "github:nixos/nixpkgs/master";
# nixpkgs-unstable-small.url = "github:nixos/nixpkgs/nixos-unstable-small";
2024-08-21 16:48:17 -07:00
2024-07-11 03:56:19 -07:00
home-manager = {
url = "github:nix-community/home-manager";
2024-07-11 03:56:19 -07:00
inputs.nixpkgs.follows = "nixpkgs";
};
2024-08-21 16:48:17 -07:00
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
flake-utils.url = "github:numtide/flake-utils";
2024-08-21 16:48:17 -07:00
nix-darwin = {
url = "github:LnL7/nix-darwin";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-flatpak.url = "github:gmodena/nix-flatpak";
2024-12-08 16:42:57 -08:00
2024-09-03 22:07:28 -07:00
nix-homebrew = {
url = "github:zhaofengli-wip/nix-homebrew";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-08-21 16:48:17 -07:00
2024-08-05 02:51:43 -07:00
homebrew-core = {
url = "github:homebrew/homebrew-core";
flake = false;
};
2024-08-21 16:48:17 -07:00
2024-08-05 02:51:43 -07:00
homebrew-cask = {
url = "github:homebrew/homebrew-cask";
flake = false;
};
2024-08-21 16:48:17 -07:00
2024-07-12 15:21:32 -07:00
lanzaboote = {
url = "github:nix-community/lanzaboote/v0.4.1";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
2024-07-12 15:21:32 -07:00
};
2024-08-21 16:48:17 -07:00
ucode.url = "github:e-tho/ucodenix";
apple-silicon = {
url = "github:tpwrules/nixos-apple-silicon";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-08-21 16:48:17 -07:00
2024-09-04 11:05:39 -07:00
apple-firmware = {
url = "git+https://code.youwen.dev/youwen5/apple-firmware";
flake = false;
};
2024-08-24 22:20:28 -07:00
spicetify = {
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-08-23 23:14:53 -07:00
viminal = {
url = "git+https://code.youwen.dev/youwen5/viminal2";
2024-09-03 22:07:28 -07:00
inputs.nixpkgs.follows = "nixpkgs";
};
2024-08-25 06:10:47 -07:00
2024-09-03 22:07:28 -07:00
vesktop-bin = {
url = "github:youwen5/vesktop-bin-flake";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
2024-09-03 22:07:28 -07:00
};
2024-12-26 01:20:07 -08:00
stylix = {
url = "github:danth/stylix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
2024-10-30 21:38:05 -07:00
2024-11-01 21:35:48 -07:00
nix-index-database = {
url = "github:marienz/nix-index-database";
2024-11-01 21:35:48 -07:00
inputs.nixpkgs.follows = "nixpkgs";
};
2024-12-27 18:03:08 -08:00
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
inputs.darwin.follows = "nix-darwin";
};
wallpapers = {
url = "git+https://code.youwen.dev/youwen5/wallpapers";
flake = false;
};
2024-08-26 15:29:33 -07:00
2024-09-03 22:07:28 -07:00
zen-browser = {
url = "github:youwen5/zen-browser-flake";
2024-12-06 00:57:45 -08:00
inputs.nixpkgs.follows = "nixpkgs";
2024-09-03 22:07:28 -07:00
};
2024-11-26 17:15:31 -08:00
nixos-wsl = {
url = "github:nix-community/NixOS-WSL";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
2024-07-11 03:56:19 -07:00
};
2024-09-02 18:16:22 -07:00
outputs =
inputs@{
2024-09-02 18:16:22 -07:00
nixpkgs,
nix-darwin,
flake-parts,
self,
2024-09-02 18:16:22 -07:00
...
}:
let
buildLiminalOS = import ./lib/buildLiminalOS.nix;
in
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
"aarch64-linux"
# "aarch64-darwin"
# aarch64-darwin is currently disabled due to lack of maintenance
];
flake = {
nixosConfigurations = {
demeter = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs self;
};
modules = [
./reference/hosts/demeter
];
2024-09-02 18:16:22 -07:00
};
2024-12-26 01:28:34 -08:00
callisto = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs self;
};
modules = [
./reference/hosts/callisto
];
};
adrastea = buildLiminalOS {
inherit inputs nixpkgs;
systemModule = ./reference/hosts/adrastea;
2024-09-02 18:16:22 -07:00
};
2024-11-26 17:15:31 -08:00
cassini = buildLiminalOS {
inherit inputs nixpkgs;
systemModule = ./reference/hosts/cassini;
2024-11-26 17:15:31 -08:00
};
2024-09-02 18:16:22 -07:00
};
darwinConfigurations.phobos = nix-darwin.lib.darwinSystem {
2024-09-02 18:16:22 -07:00
specialArgs = {
inherit inputs;
};
modules = [
./hosts/phobos
2024-09-02 18:16:22 -07:00
];
};
nixosModules = rec {
default = liminalOS;
liminalOS = {
imports = [
inputs.nix-flatpak.nixosModules.nix-flatpak
inputs.home-manager.nixosModules.home-manager
inputs.nixos-wsl.nixosModules.default
inputs.stylix.nixosModules.stylix
2024-12-27 18:03:08 -08:00
inputs.agenix.nixosModules.age
./modules/default.nix
2024-12-26 00:41:37 -08:00
./overlays
(
{ pkgs, ... }:
{
home-manager.extraSpecialArgs = {
spicepkgs = inputs.spicetify.legacyPackages.${pkgs.system};
inherit inputs self;
};
nixpkgs.overlays = [
(final: prev: {
zen-browser = inputs.zen-browser.packages.${pkgs.system}.default;
})
];
2024-12-27 18:03:08 -08:00
environment.systemPackages = [ inputs.agenix.packages.${pkgs.system}.default ];
}
)
];
};
};
homeManagerModules = rec {
default = liminalOS;
liminalOS = {
imports = [
inputs.nix-index-database.hmModules.nix-index
inputs.spicetify.homeManagerModules.default
2024-12-27 18:03:08 -08:00
inputs.agenix.homeManagerModules.age
./hm/modules/default.nix
];
};
};
2024-12-26 00:46:15 -08:00
templates = rec {
liminalOS = {
path = ./templates/liminalOS;
description = "Barebones configuration of liminalOS";
};
default = liminalOS;
};
2024-07-21 19:02:10 -07:00
};
perSystem =
{
pkgs,
...
}:
{
formatter = pkgs.nixfmt-rfc-style;
2024-10-29 22:11:27 -07:00
devShells.default = pkgs.mkShell {
2024-12-26 01:24:49 -08:00
buildInputs = with pkgs; [
nixd
nixfmt-rfc-style
prettierd
taplo
marksman
];
2024-10-29 22:11:27 -07:00
};
2024-09-02 18:16:22 -07:00
};
2024-07-11 03:56:19 -07:00
};
}