41 lines
817 B
Nix
41 lines
817 B
Nix
{
|
|
description = "Benny nixos config flake";
|
|
|
|
inputs = {
|
|
# nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
# ...
|
|
|
|
|
|
# Optional - updates underlying without waiting for nix-citizen to update
|
|
|
|
};
|
|
|
|
outputs =
|
|
{ nixpkgs
|
|
, home-manager
|
|
, ...
|
|
}@inputs:
|
|
let
|
|
system = "x86_64-linux";
|
|
user = "mbeno";
|
|
in
|
|
{
|
|
nixosConfigurations = {
|
|
zedd = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
specialArgs = { inherit inputs user; };
|
|
modules = [
|
|
({ config, pkgs, ... }: { })
|
|
./hosts/zedd
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|