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 = {
|
|
|
|
# Nixpkgs
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
|
|
|
|
# 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'.
|
|
|
|
|
|
|
|
# Home manager
|
|
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
2023-04-05 23:18:54 +08:00
|
|
|
# Add any other flake you might need
|
|
|
|
nixpkgs-f2k.url = "github:fortuneteller2k/nixpkgs-f2k";
|
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 <
|
|
|
|
./nixos/configuration.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# 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 <
|
|
|
|
./home-manager/home.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|