update lots

This commit is contained in:
2026-06-26 17:50:41 +02:00
parent bed947d4d9
commit edaa68912d
7 changed files with 347 additions and 215 deletions
+18 -10
View File
@@ -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 @@
)
];
};
};
};
}