dotfiles-nixos/flake.nix

45 lines
1.6 KiB
Nix
Raw Normal View History

2023-06-06 15:01:28 +00:00
{
description = "Your new nix config";
inputs = {
# Nixpkgs
2023-06-06 15:19:23 +00:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05";
2023-06-06 15:01:28 +00:00
# Home manager
2023-06-06 15:19:23 +00:00
home-manager.url = "github:nix-community/home-manager/release-23.05";
2023-06-06 15:01:28 +00:00
home-manager.inputs.nixpkgs.follows = "nixpkgs";
# TODO_: Add any other flake you might need
2023-06-06 15:19:23 +00:00
# hardware.url = "github:nixos/nixos-hardware";
2023-06-06 15:01:28 +00:00
# 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
2023-06-06 15:05:11 +00:00
nixos-mans = nixpkgs.lib.nixosSystem {
2023-06-06 15:01:28 +00:00
specialArgs = { inherit inputs; }; # Pass flake inputs to our config
# > Our main nixos configuration file <
modules = [ ./nixos/configuration.nix ];
};
};
# Standalone home-manager configuration entrypoint
# Available through 'home-manager --flake .#your-username@your-hostname'
# homeConfigurations = {
# # FIXME_ replace with your username@hostname
# "mans@nixos-mans" = home-manager.lib.homeManagerConfiguration {
# pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
# extraSpecialArgs = { inherit inputs; }; # Pass flake inputs to our config
# # > Our main home-manager configuration file <
# modules = [ ./home-manager/home.nix ];
# };
# };
};
}