1
Fork 0
satellite/flake.nix

125 lines
3.5 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
inputs = {
2022-12-28 13:27:18 +01:00
# Nixpkgs
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
2021-11-21 14:52:49 +01:00
2022-12-28 13:27:18 +01:00
# Home manager
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
2023-01-10 02:38:06 +01:00
# Agenix
agenix.url = "github:ryantm/agenix";
agenix.inputs.nixpkgs.follows = "nixpkgs";
2023-01-11 10:19:49 +01:00
# Homeage
homeage.url = "github:jordanisaacs/homeage";
homeage.inputs.nixpkgs.follows = "nixpkgs";
2023-01-10 02:38:06 +01:00
# Base16-nix
base16.url = github:SenchoPens/base16.nix;
base16.inputs.nixpkgs.follows = "nixpkgs";
# Catpuccin base16 color schemes
catppuccin-base16.url = github:catppuccin/base16;
catppuccin-base16.flake = false;
2023-01-22 01:22:38 +01:00
# Rosepine base16 color schemes
rosepine-base16.url = github:edunfelt/base16-rose-pine-scheme;
rosepine-base16.flake = false;
2023-01-10 02:38:06 +01:00
# Impermanence
impermanence.url = "github:nix-community/impermanence";
# Neovim nightly
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
neovim-nightly-overlay.inputs.nixpkgs.follows = "nixpkgs";
2022-12-28 13:27:18 +01:00
};
2022-12-28 13:27:18 +01:00
outputs = { self, nixpkgs, home-manager, ... }@inputs:
let
inherit (self) outputs;
forAllSystems = nixpkgs.lib.genAttrs [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
2023-01-10 02:38:06 +01:00
specialArgs = {
inherit inputs outputs;
# colorscheme = "${inputs.catppuccin-base16}/base16/latte.yaml";
colorscheme = "${inputs.rosepine-base16}/rose-pine-dawn.yaml";
2023-01-10 02:38:06 +01:00
};
2022-12-28 13:27:18 +01:00
in
rec {
# Acessible through 'nix build', 'nix shell', etc
packages = forAllSystems (system:
let pkgs = nixpkgs.legacyPackages.${system};
in import ./pkgs { inherit pkgs; }
);
2022-08-16 10:31:45 +02:00
2022-12-28 13:27:18 +01:00
# Devshell for bootstrapping
# Acessible through 'nix develop'
devShells = forAllSystems (system:
let pkgs = nixpkgs.legacyPackages.${system};
in import ./shell.nix { inherit pkgs; }
);
2021-11-21 19:08:57 +01:00
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;
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;
2022-01-30 20:19:35 +01:00
2022-12-28 13:27:18 +01:00
# NixOS configuration entrypoint
# Available through 'nixos-rebuild --flake .#...
nixosConfigurations = {
tethys = nixpkgs.lib.nixosSystem {
2023-01-10 02:38:06 +01:00
inherit specialArgs;
2022-12-28 13:27:18 +01:00
modules = [
2023-01-10 02:38:06 +01:00
home-manager.nixosModules.home-manager
{
home-manager.users.adrielus = import ./home/adrielus/tethys.nix;
home-manager.extraSpecialArgs = specialArgs;
home-manager.useUserPackages = true;
}
2023-01-10 02:38:06 +01:00
./hosts/nixos/tethys
2022-12-28 13:27:18 +01:00
];
};
2022-01-30 20:19:35 +01:00
};
2022-12-28 13:27:18 +01:00
# Standalone home-manager configuration entrypoint
# Available through 'home-manager --flake .#...
homeConfigurations = {
"adrielus@tethys" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
2023-01-10 02:38:06 +01:00
extraSpecialArgs = specialArgs;
2022-12-28 13:27:18 +01:00
modules = [
./home/adrielus/tethys.nix
];
2022-05-11 20:29:47 +02:00
};
2021-11-21 19:08:57 +01:00
};
2021-11-21 14:33:20 +01:00
};
# {{{ Caching and whatnot
nixConfig = {
extra-substituters = [
"https://nix-community.cachix.org" # I think I need this for neovim-nightly?
];
extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
# }}}
2021-11-21 14:33:20 +01:00
}