1
Fork 0
satellite/flake.nix

215 lines
6.4 KiB
Nix
Raw Normal View History

2021-11-21 14:33:20 +01:00
{
2022-12-28 13:27:18 +01:00
description = "Satellite";
2021-11-21 14:52:49 +01:00
2023-05-28 02:00:10 +02:00
# {{{ Inputs
2021-11-21 14:52:49 +01:00
inputs = {
2024-04-01 05:57:56 +02:00
# {{{ Nixpkgs instances
2024-07-26 20:18:26 +02:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
2023-12-10 12:55:54 +01:00
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
2023-12-10 23:48:46 +01:00
# }}}
# {{{ Additional package repositories
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
# Firefox addons
firefox-addons.url = "git+https://gitlab.com/rycee/nur-expressions?dir=pkgs/firefox-addons";
firefox-addons.inputs.nixpkgs.follows = "nixpkgs";
2023-12-10 23:48:46 +01:00
# }}}
# {{{ Nix-related tooling
2024-04-01 05:57:56 +02:00
# {{{ Storage
2023-01-10 02:38:06 +01:00
impermanence.url = "github:nix-community/impermanence";
2023-12-10 23:48:46 +01:00
# Declarative partitioning
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
# }}}
2023-05-24 03:17:09 +02:00
2024-07-26 20:18:26 +02:00
home-manager.url = "github:nix-community/home-manager/release-24.05";
2023-12-10 23:48:46 +01:00
home-manager.inputs.nixpkgs.follows = "nixpkgs";
2023-05-31 04:53:44 +02:00
2023-12-10 23:48:46 +01:00
nix-index-database.url = "github:Mic92/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
2023-06-15 20:08:20 +02:00
2024-01-31 20:03:00 +01:00
sops-nix.url = "github:Mic92/sops-nix";
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
2023-12-21 16:21:14 +01:00
korora.url = "github:adisbladis/korora";
2023-12-10 23:48:46 +01:00
# }}}
# {{{ Standalone software
# {{{ Nightly versions of things
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
neovim-nightly-overlay.inputs.nixpkgs.follows = "nixpkgs";
# }}}
2023-09-04 04:58:39 +02:00
# {{{ Self management
# Smos
2024-04-01 05:57:56 +02:00
smos.url = "github:NorfairKing/smos";
2024-07-26 20:18:26 +02:00
# smos.inputs.nixpkgs.url = "github:NixOS/nixpkgs/b8dd8be3c790215716e7c12b247f45ca525867e2";
2023-09-04 04:58:39 +02:00
# Intray
2024-02-10 04:29:57 +01:00
intray.url = "github:NorfairKing/intray";
2024-07-26 20:18:26 +02:00
# intray.inputs.nixpkgs.url = "github:NixOS/nixpkgs/fc07dc3bdf2956ddd64f24612ea7fc894933eb2e";
2023-09-04 04:58:39 +02:00
# }}}
2024-04-01 05:57:56 +02:00
2023-12-10 23:48:46 +01:00
anyrun.url = "github:Kirottu/anyrun";
anyrun.inputs.nixpkgs.follows = "nixpkgs";
2024-05-28 02:39:42 +02:00
miros.url = "github:prescientmoon/miros";
2024-04-16 23:25:20 +02:00
miros.inputs.nixpkgs.follows = "nixpkgs";
2023-12-10 23:48:46 +01:00
# Spotify client with theming support
spicetify-nix.url = "github:the-argus/spicetify-nix";
spicetify-nix.inputs.nixpkgs.follows = "nixpkgs";
# }}}
# {{{ Theming
2024-08-26 17:38:47 +02:00
darkmatter-grub-theme.url = "gitlab:VandalByte/darkmatter-grub-theme";
2024-04-29 14:24:28 +02:00
darkmatter-grub-theme.inputs.nixpkgs.follows = "nixpkgs";
2023-12-10 23:48:46 +01:00
2024-04-01 05:57:56 +02:00
stylix.url = "github:danth/stylix/a33d88cf8f75446f166f2ff4f810a389feed2d56";
# stylix.inputs.nixpkgs.follows = "nixpkgs";
# stylix.inputs.home-manager.follows = "home-manager";
2023-12-10 23:48:46 +01:00
2024-04-29 15:50:59 +02:00
base16-schemes.url = "github:tinted-theming/schemes";
base16-schemes.flake = false;
2023-12-10 23:48:46 +01:00
# }}}
2022-12-28 13:27:18 +01:00
};
2023-05-28 02:00:10 +02:00
# }}}
2024-08-26 17:38:47 +02:00
outputs =
{
self,
nixpkgs,
home-manager,
...
}@inputs:
2022-12-28 13:27:18 +01:00
let
2024-04-01 05:57:56 +02:00
# {{{ Common helpers
2022-12-28 13:27:18 +01:00
inherit (self) outputs;
2024-07-26 20:18:26 +02:00
forAllSystems = nixpkgs.lib.genAttrs [ "x86_64-linux" ];
2023-01-10 02:38:06 +01:00
specialArgs = system: {
2023-01-10 02:38:06 +01:00
inherit inputs outputs;
2023-12-10 12:55:54 +01:00
upkgs = inputs.nixpkgs-unstable.legacyPackages.${system};
2023-01-10 02:38:06 +01:00
};
2022-12-28 13:27:18 +01:00
in
2024-08-26 17:38:47 +02:00
# }}}
{
2023-05-28 02:00:10 +02:00
# {{{ Packages
2024-04-01 05:57:56 +02:00
# Accessible through 'nix build', 'nix shell', etc
2024-08-26 17:38:47 +02:00
packages = forAllSystems (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
upkgs = inputs.nixpkgs-unstable.legacyPackages.${system};
myPkgs = import ./pkgs { inherit pkgs upkgs; };
in
myPkgs
// {
octodns = upkgs.octodns.withProviders (ps: [ myPkgs.octodns-cloudflare ]);
}
// (import ./dns/pkgs.nix) { inherit pkgs self system; }
);
2023-05-28 02:00:10 +02:00
# }}}
# {{{ Bootstrapping and other pinned devshells
2024-04-01 05:57:56 +02:00
# Accessible through 'nix develop'
2024-08-26 17:38:47 +02:00
devShells = forAllSystems (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
args = {
inherit pkgs;
} // specialArgs system;
in
import ./devshells args
);
2023-05-28 02:00:10 +02:00
# }}}
# {{{ Overlays and modules
2022-12-28 13:27:18 +01:00
# Custom packages and modifications, exported as overlays
overlays = import ./overlays;
2022-03-09 20:36:48 +01:00
2022-12-28 13:27:18 +01:00
# Reusable nixos modules
nixosModules = import ./modules/nixos // import ./modules/common;
2021-11-21 14:52:49 +01:00
2022-12-28 13:27:18 +01:00
# Reusable home-manager modules
homeManagerModules = import ./modules/home-manager // import ./modules/common;
2023-05-28 02:00:10 +02:00
# }}}
# {{{ Nixos
2022-12-28 13:27:18 +01:00
# NixOS configuration entrypoint
# Available through 'nixos-rebuild --flake .#...
2023-05-28 02:00:10 +02:00
nixosConfigurations =
2024-08-26 17:38:47 +02:00
let
nixos =
{ system, hostname }:
nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = specialArgs system;
modules = [
# {{{ Import home manager
(
{ lib, ... }:
{
2024-08-26 18:12:43 +02:00
imports = lib.lists.optionals (builtins.pathExists ./home/${hostname}.nix) [
2024-08-26 17:38:47 +02:00
home-manager.nixosModules.home-manager
{
2024-08-27 16:28:49 +02:00
home-manager.users.pilot = ./home/${hostname}.nix;
2024-08-26 17:38:47 +02:00
home-manager.extraSpecialArgs = specialArgs system // {
inherit hostname;
};
home-manager.useUserPackages = true;
stylix.homeManagerIntegration.followSystem = false;
stylix.homeManagerIntegration.autoImport = false;
}
];
}
)
# }}}
./hosts/nixos/${hostname}
];
};
2023-05-28 02:00:10 +02:00
in
{
tethys = nixos {
system = "x86_64-linux";
hostname = "tethys";
};
2023-05-28 05:24:36 +02:00
2023-07-17 18:40:39 +02:00
lapetus = nixos {
system = "x86_64-linux";
hostname = "lapetus";
};
2023-08-13 04:15:32 +02:00
2024-08-26 17:38:47 +02:00
calypso = nixos {
system = "x86_64-linux";
hostname = "calypso";
};
2023-08-13 04:15:32 +02:00
2024-08-26 17:38:47 +02:00
iso = nixos {
system = "x86_64-linux";
hostname = "iso";
};
2023-05-28 02:00:10 +02:00
};
# }}}
2021-11-21 14:33:20 +01:00
};
# {{{ Caching and whatnot
2023-05-31 05:08:36 +02:00
# TODO: persist trusted substituters file
nixConfig = {
extra-substituters = [
2024-04-01 05:57:56 +02:00
"https://nix-community.cachix.org"
# "https://anyrun.cachix.org"
"https://smos.cachix.org"
"https://intray.cachix.org"
];
extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
2024-04-01 05:57:56 +02:00
# "anyrun.cachix.org-1:pqBobmOjI7nKlsUMV25u9QHa9btJK65/C8vnO3p346s="
"smos.cachix.org-1:YOs/tLEliRoyhx7PnNw36cw2Zvbw5R0ASZaUlpUv+yM="
"intray.cachix.org-1:qD7I/NQLia2iy6cbzZvFuvn09iuL4AkTmHvjxrQlccQ="
];
};
# }}}
2021-11-21 14:33:20 +01:00
}