dotfiles.nix/flake.nix

102 lines
3.2 KiB
Nix
Raw Normal View History

2023-04-03 22:41:22 +08:00
{
2023-04-05 23:18:54 +08:00
description = "NixOS + Home Manager configuration with flakes";
2023-04-03 22:41:22 +08:00
inputs = {
2023-05-15 21:11:30 +08:00
# Nixpkgs
2023-12-22 23:26:06 +08:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
2023-05-15 21:11:30 +08:00
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
2023-05-04 13:29:02 +08:00
2023-04-03 22:41:22 +08:00
# Home manager
2023-10-10 18:58:55 +08:00
home-manager = {
2023-12-22 23:26:06 +08:00
url = "github:nix-community/home-manager/release-23.11";
2023-10-10 18:58:55 +08:00
inputs.nixpkgs.follows = "nixpkgs";
};
2023-04-03 22:41:22 +08:00
2023-04-05 23:18:54 +08:00
# Add any other flake you might need
2023-11-05 22:05:04 +08:00
agenix.url = "github:ryantm/agenix";
2024-01-21 21:04:38 +08:00
agenix-rekey = {
url = "github:oddlama/agenix-rekey";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-01-14 06:29:18 +08:00
impermanence.url = "github:nix-community/impermanence";
2023-04-03 22:41:22 +08: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"
];
in
2023-04-05 23:18:54 +08:00
{
2023-04-03 22:41:22 +08:00
# Your custom packages
# Acessible through 'nix build', 'nix shell', etc
packages = forAllSystems (system:
let pkgs = nixpkgs.legacyPackages.${system};
in import ./pkgs { inherit pkgs; }
);
# Devshell for bootstrapping
# Acessible through 'nix develop' or 'nix-shell' (legacy)
devShells = forAllSystems (system:
let pkgs = nixpkgs.legacyPackages.${system};
in import ./shell.nix { inherit pkgs; }
);
# Your custom packages and modifications, exported as overlays
overlays = import ./overlays { inherit inputs; };
# Reusable nixos modules you might want to export
# These are usually stuff you would upstream into nixpkgs
nixosModules = import ./modules/nixos;
# Reusable home-manager modules you might want to export
# These are usually stuff you would upstream into home-manager
homeManagerModules = import ./modules/home-manager;
2024-01-21 21:04:38 +08:00
# Expose the necessary information in your flake so agenix-rekey
# knows where it has too look for secrets and paths.
agenix-rekey = inputs.agenix-rekey.configure {
userFlake = self;
nodes = self.nixosConfigurations;
};
2023-04-03 22:41:22 +08:00
# NixOS configuration entrypoint
# Available through 'nixos-rebuild --flake .#your-hostname'
nixosConfigurations = {
2023-04-05 23:18:54 +08:00
fuchsia = nixpkgs.lib.nixosSystem {
2023-04-03 22:41:22 +08:00
specialArgs = { inherit inputs outputs; };
modules = [
2023-05-07 23:30:59 +08:00
./nixos/fuchsia/configuration.nix
2023-04-03 22:41:22 +08:00
];
};
2023-05-13 23:55:59 +08:00
viridian = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
modules = [
./nixos/viridian/configuration.nix
];
};
2023-04-03 22:41:22 +08:00
};
homeConfigurations = {
2023-11-06 18:10:48 +08:00
"sajenim@fuchsia" = home-manager.lib.homeManagerConfiguration {
2024-01-21 21:04:38 +08:00
pkgs = nixpkgs.legacyPackages.x86_64-linux;
2023-05-13 23:55:59 +08:00
extraSpecialArgs = { inherit inputs outputs; };
modules = [
2024-01-21 21:04:38 +08:00
./home-manager/sajenim/fuchsia.nix
2023-05-13 23:55:59 +08:00
];
};
2023-10-31 05:37:25 +08:00
2024-01-21 21:04:38 +08:00
"sajenim@viridian" = home-manager.lib.homeManagerConfiguration {
2023-10-31 05:37:25 +08:00
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
modules = [
2024-06-03 20:50:23 +08:00
./home-manager/sajenim/viridian.nix
2023-10-31 05:37:25 +08:00
];
};
2023-04-03 22:41:22 +08:00
};
};
}