37 lines
829 B
Nix
37 lines
829 B
Nix
{
|
|
description = "Nixos config flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
ags.url = "github:Aylur/ags";
|
|
|
|
nvf.url = "github:notashelf/nvf";
|
|
|
|
zen-browser.url = "github:0xc000022070/zen-browser-flake";
|
|
|
|
};
|
|
|
|
outputs = { self, nixpkgs, nvf, zen-browser, ... }@inputs:
|
|
let system = "x86_64-linux"; in
|
|
{
|
|
nixosConfigurations.my-nixos = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
specialArgs = {
|
|
inherit inputs;
|
|
};
|
|
modules = [
|
|
./configuration.nix
|
|
# inputs.zen-browser.packages."${system}".default
|
|
# nvf.homeManagerModules.default
|
|
inputs.home-manager.nixosModules.default
|
|
];
|
|
};
|
|
};
|
|
}
|