52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
|
{
|
||
|
description = "Benny nixos config flake";
|
||
|
|
||
|
inputs = {
|
||
|
# nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-23.11";
|
||
|
nixpkgs-unstable.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||
|
home-manager = {
|
||
|
url = "github:nix-community/home-manager?ref=release-23.11";
|
||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||
|
};
|
||
|
sops-nix.url = "github:Mic92/sops-nix";
|
||
|
};
|
||
|
|
||
|
outputs =
|
||
|
{ self
|
||
|
, nixpkgs
|
||
|
, nixpkgs-unstable
|
||
|
, sops-nix
|
||
|
, notlistener
|
||
|
, ghettoptt
|
||
|
, ...
|
||
|
}@inputs:
|
||
|
let
|
||
|
system = "x86_64-linux";
|
||
|
user = "mbeno";
|
||
|
overlay-unstable = final: prev: {
|
||
|
unstable = import nixpkgs-unstable {
|
||
|
inherit system;
|
||
|
config.allowUnfree = true;
|
||
|
};
|
||
|
};
|
||
|
in
|
||
|
{
|
||
|
nixosConfigurations = {
|
||
|
zedd = nixpkgs.lib.nixosSystem {
|
||
|
inherit system;
|
||
|
specialArgs = { inherit inputs self user sops-nix; };
|
||
|
modules = [
|
||
|
({ config, pkgs, ... }: {
|
||
|
nixpkgs.overlays = [
|
||
|
overlay-unstable
|
||
|
];
|
||
|
})
|
||
|
./hosts/mbeno
|
||
|
sops-nix.nixosModules.sops
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|