39 lines
1.3 KiB
Nix
39 lines
1.3 KiB
Nix
{
|
|
description = "Your new nix config";
|
|
|
|
inputs = {
|
|
# Nixpkgs
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05";
|
|
|
|
# Home manager
|
|
home-manager.url = "github:nix-community/home-manager/release-23.05";
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
# TODO_: Add any other flake you might need
|
|
hardware.url = "github:nixos/nixos-hardware";
|
|
|
|
# Shameless plug: looking for a way to nixify your themes and make
|
|
# everything match nicely? Try nix-colors!
|
|
# nix-colors.url = "github:misterio77/nix-colors";
|
|
};
|
|
|
|
outputs = { nixpkgs, home-manager, ... }@inputs: {
|
|
# NixOS configuration entrypoint
|
|
# Available through 'nixos-rebuild --flake .#your-hostname'
|
|
nixosConfigurations = {
|
|
# FIXME_ replace with your hostname
|
|
nixos-desktop-mans = nixpkgs.lib.nixosSystem {
|
|
specialArgs = { inherit inputs; }; # Pass flake inputs to our config
|
|
# > Our main nixos configuration file <
|
|
modules = [ ./nixos/machines/nixos-desktop-mans/configuration.nix ];
|
|
};
|
|
|
|
nixos-laptop-mans = nixpkgs.lib.nixosSystem {
|
|
specialArgs = { inherit inputs; }; # Pass flake inputs to our config
|
|
# > Our main nixos configuration file <
|
|
modules = [ ./nixos/machines/nixos-laptop-mans/configuration.nix ];
|
|
};
|
|
};
|
|
};
|
|
}
|