dotfiles.nix/flake.nix

115 lines
3.7 KiB
Nix
Raw Permalink 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
2024-06-03 20:51:33 +08:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
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 = {
2024-06-03 20:51:33 +08:00
url = "github:nix-community/home-manager/release-24.05";
2023-10-10 18:58:55 +08:00
inputs.nixpkgs.follows = "nixpkgs";
};
2023-04-03 22:41:22 +08:00
2024-06-03 20:53:43 +08:00
# Flakes our configuration is dependent on.
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";
2024-06-03 20:53:43 +08:00
2024-06-17 18:43:14 +08:00
# Security enhancement.
crowdsec = {
url = "git+https://codeberg.org/kampka/nix-flake-crowdsec.git";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-06-03 20:53:43 +08:00
# Add any other flake you might need.
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
2024-08-08 08:44:10 +08:00
nixvim.url = "git+https://git.sajenim.dev/jasmine/nvim.nix.git";
2023-04-03 22:41:22 +08:00
};
2024-08-08 09:02:42 +08:00
outputs = {
self,
nixpkgs,
home-manager,
...
} @ inputs: let
inherit (self) outputs;
# Supported systems for your flake packages, shell, etc.
systems = [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
# This is a function that generates an attribute by calling a function you
# pass to it, with each system as an argument
forAllSystems = nixpkgs.lib.genAttrs systems;
in {
# Your custom packages
# Acessible through 'nix build', 'nix shell', etc
packages = forAllSystems (system: import ./pkgs nixpkgs.legacyPackages.${system});
# Formatter for your nix files, available through 'nix fmt'
# Other options beside 'alejandra' include 'nixpkgs-fmt'
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra);
2023-04-03 22:41:22 +08:00
2024-08-08 09:02:42 +08:00
# 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;
2023-04-03 22:41:22 +08:00
2024-08-08 09:02:42 +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;
};
2024-01-21 21:04:38 +08:00
2024-08-08 09:02:42 +08:00
# NixOS configuration entrypoint
# Available through 'nixos-rebuild --flake .#your-hostname'
nixosConfigurations = {
fuchsia = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
modules = [
./nixos/fuchsia/configuration.nix
];
};
2023-05-13 23:55:59 +08:00
2024-08-08 09:02:42 +08:00
viridian = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
modules = [
./nixos/viridian/configuration.nix
];
2023-04-03 22:41:22 +08:00
};
2024-08-08 09:02:42 +08:00
};
2023-04-03 22:41:22 +08:00
2024-08-08 09:02:42 +08:00
# Standalone home-manager configuration entrypoint
# Available through 'home-manager --flake .#your-username@your-hostname'
homeConfigurations = {
"sajenim@fuchsia" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = {inherit inputs outputs;};
modules = [
./home-manager/sajenim/fuchsia.nix
];
};
2023-10-31 05:37:25 +08:00
2024-08-08 09:02:42 +08:00
"sajenim@viridian" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = {inherit inputs outputs;};
modules = [
./home-manager/sajenim/viridian.nix
];
2023-04-03 22:41:22 +08:00
};
};
2024-08-08 09:02:42 +08:00
};
2023-04-03 22:41:22 +08:00
}