replaced fuzzel with walker

This commit is contained in:
voidarclabs
2025-11-04 19:06:32 +00:00
parent 47d8eeaa16
commit dc671dea34
3 changed files with 122 additions and 7 deletions

View File

@@ -3,9 +3,15 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
elephant.url = "github:abenz1267/elephant";
walker = {
url = "github:abenz1267/walker";
inputs.elephant.follows = "elephant";
};
};
outputs = { self, nixpkgs }: let
outputs = { self, nixpkgs, ... }@inputs: let
stdenv.hostPlatform.system = "x86_64-linux"; # adjust if needed
system = stdenv.hostPlatform.system;
hardwareConfig = import /etc/nixos/hardware-configuration.nix;
@@ -13,6 +19,7 @@
{
nixosConfigurations.mobile02 = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {inherit inputs;};
modules = [
./configuration.nix