update lots
This commit is contained in:
@@ -12,15 +12,18 @@
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, zen-browser, ... } @inputs: let
|
||||
system = "x86_64-linux";
|
||||
inherit (inputs) nixpkgs;
|
||||
eachSystem = nixpkgs.lib.genAttrs (import inputs.systems);
|
||||
pkgsFor = eachSystem (system: import nixpkgs {localSystem = system;});
|
||||
in {
|
||||
outputs =
|
||||
{ self, zen-browser, ... }@inputs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
inherit (inputs) nixpkgs;
|
||||
eachSystem = nixpkgs.lib.genAttrs (import inputs.systems);
|
||||
pkgsFor = eachSystem (system: import nixpkgs { localSystem = system; });
|
||||
in
|
||||
{
|
||||
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
inherit system;
|
||||
modules = [
|
||||
./configuration.nix
|
||||
./hardware-configuration.nix
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
@@ -36,7 +39,12 @@
|
||||
|
||||
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
|
||||
}
|
||||
(let inputs = { zen = zen-browser; }; in
|
||||
(
|
||||
let
|
||||
inputs = {
|
||||
zen = zen-browser;
|
||||
};
|
||||
in
|
||||
{ config, pkgs, ... }: {
|
||||
environment.systemPackages = [
|
||||
pkgs.git
|
||||
@@ -46,5 +54,5 @@
|
||||
)
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user