lol
This commit is contained in:
parent
ab676a4e01
commit
6666ff8c5e
46
user/\
46
user/\
@ -1,46 +0,0 @@
|
||||
{
|
||||
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";
|
||||
};
|
||||
nix-alien {
|
||||
url = "github:thiagokokada/nix-alien";
|
||||
inputs.nixpkgs.follows = "home-manager";
|
||||
};
|
||||
}
|
||||
|
||||
# ...
|
||||
|
||||
|
||||
# Optional - updates underlying without waiting for nix-citizen to update
|
||||
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ self
|
||||
, nixpkgs
|
||||
, home-manager
|
||||
, ...
|
||||
}@inputs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
user = "mbeno";
|
||||
in
|
||||
{
|
||||
nixosConfigurations = {
|
||||
zedd = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
specialArgs = { inherit inputs self user; };
|
||||
modules = [
|
||||
({ config, pkgs, ... }: { })
|
||||
./hosts/zedd
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user