40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{
|
|
description = "My first flake!";
|
|
|
|
inputs = {
|
|
nixpkgs-stable.url = "nixpkgs/nixos-24.05";
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
home-manager.url = "github:nix-community/home-manager/release-24.05";
|
|
nixvim = {
|
|
url = "github:nix-community/nixvim";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, nixpkgs-stable, nixvim, home-manager, ... }:
|
|
let
|
|
system = "x86_64-linux";
|
|
lib = nixpkgs.lib;
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
pkgs-stable = nixpkgs-stable.legacyPackages.${system};
|
|
in {
|
|
nixosConfigurations = {
|
|
poggers = lib.nixosSystem {
|
|
inherit system;
|
|
modules = [ ./configuration.nix ];
|
|
specialArgs = {
|
|
inherit pkgs-stable;
|
|
inherit nixvim;
|
|
};
|
|
};
|
|
};
|
|
homeConfigurations = {
|
|
poggers = home-manager.lib.homeManagerConfiguration {
|
|
inherit pkgs;
|
|
inherit nixvim;
|
|
modules = [ ./modules/home.nix ];
|
|
};
|
|
};
|
|
};
|
|
}
|