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-06-03 10:55:42 +08:00
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05";
|
2023-05-15 21:11:30 +08:00
|
|
|
# You can access packages and modules from different nixpkgs revs
|
|
|
|
# at the same time. Here's an working example:
|
|
|
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
# Also see the 'unstable-packages' overlay at 'overlays/default.nix'.
|
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 = {
|
|
|
|
url = "github:nix-community/home-manager/release-23.05";
|
|
|
|
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-10-10 18:57:56 +08:00
|
|
|
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
|
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;
|
|
|
|
|
|
|
|
# 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 = [
|
|
|
|
# > Our main nixos configuration file <
|
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
|
|
|
|
2023-10-30 16:39:05 +08:00
|
|
|
viridian = nixpkgs.lib.nixosSystem {
|
|
|
|
specialArgs = { inherit inputs outputs; };
|
|
|
|
modules = [
|
|
|
|
# > Our main nixos configuration file <
|
|
|
|
./nixos/viridian/configuration.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2023-05-13 23:55:59 +08:00
|
|
|
lavender = nixpkgs.lib.nixosSystem {
|
|
|
|
specialArgs = { inherit inputs outputs; };
|
|
|
|
modules = [
|
|
|
|
# > Our main nixos configuration file <
|
|
|
|
./nixos/lavender/configuration.nix
|
|
|
|
];
|
|
|
|
};
|
2023-04-03 22:41:22 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
# Standalone home-manager configuration entrypoint
|
|
|
|
# Available through 'home-manager --flake .#your-username@your-hostname'
|
|
|
|
homeConfigurations = {
|
2023-04-05 23:18:54 +08:00
|
|
|
"sajenim@fuchsia" = home-manager.lib.homeManagerConfiguration {
|
2023-04-03 22:41:22 +08:00
|
|
|
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
|
|
|
extraSpecialArgs = { inherit inputs outputs; };
|
|
|
|
modules = [
|
|
|
|
# > Our main home-manager configuration file <
|
2023-05-15 21:11:30 +08:00
|
|
|
./home-manager/sajenim/home.nix
|
2023-04-03 22:41:22 +08:00
|
|
|
];
|
|
|
|
};
|
2023-05-13 23:55:59 +08:00
|
|
|
|
|
|
|
"admin@lavender" = home-manager.lib.homeManagerConfiguration {
|
|
|
|
pkgs = nixpkgs.legacyPackages.aarch64-linux;
|
|
|
|
extraSpecialArgs = { inherit inputs outputs; };
|
|
|
|
modules = [
|
2023-05-15 21:11:30 +08:00
|
|
|
./home-manager/admin/home.nix
|
2023-05-13 23:55:59 +08:00
|
|
|
];
|
|
|
|
};
|
2023-04-03 22:41:22 +08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|