nix/flake.nix

25 lines
633 B
Nix
Raw Normal View History

2024-06-13 15:38:40 +02:00
{
description = ":-)";
inputs = {
2024-06-15 21:59:32 +02:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2024-06-13 15:38:40 +02:00
home-manager = {
2024-06-15 21:59:32 +02:00
url = "github:nix-community/home-manager";
2024-06-13 15:38:40 +02:00
inputs.nixpkgs.follows = "nixpkgs";
};
nur.url = "github:nix-community/NUR";
};
outputs = { nixpkgs, home-manager, nur, ... }: {
nixosConfigurations = {
2024-06-15 21:59:32 +02:00
"krizej-pc" = nixpkgs.lib.nixosSystem {
2024-06-13 15:38:40 +02:00
system = "x86_64-linux";
modules = [
{ nixpkgs.overlays = [ nur.overlay ]; }
nur.nixosModules.nur
2024-07-04 01:14:24 +02:00
home-manager.nixosModules.home-manager
./configuration.nix
2024-06-13 15:38:40 +02:00
];
};
};
};
}