diff --git a/flake.lock b/flake.lock index 7b6e24d..97d1472 100644 --- a/flake.lock +++ b/flake.lock @@ -1,26 +1,5 @@ { "nodes": { - "eden": { - "inputs": { - "flake-utils": "flake-utils", - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1760807225, - "narHash": "sha256-6Dxn88efx9qHXblx8KnXvbqyNiUWrkHtTgWJ0vpyric=", - "owner": "grantimatter", - "repo": "eden-flake", - "rev": "cbb80664a4a3a28505c371bb10a79dcdb183e788", - "type": "github" - }, - "original": { - "owner": "grantimatter", - "repo": "eden-flake", - "type": "github" - } - }, "fabric-dwl": { "inputs": { "nixpkgs": "nixpkgs" @@ -102,25 +81,7 @@ }, "flake-utils_2": { "inputs": { - "systems": "systems_2" - }, - "locked": { - "lastModified": 1731533236, - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, - "flake-utils_3": { - "inputs": { - "systems": "systems_4" + "systems": "systems_3" }, "locked": { "lastModified": 1710146030, @@ -240,7 +201,7 @@ "nixpkgs" ], "nuschtosSearch": "nuschtosSearch", - "systems": "systems_3" + "systems": "systems_2" }, "locked": { "lastModified": 1760353389, @@ -259,7 +220,7 @@ }, "nuschtosSearch": { "inputs": { - "flake-utils": "flake-utils_2", + "flake-utils": "flake-utils", "ixx": "ixx", "nixpkgs": [ "nixvim", @@ -283,9 +244,9 @@ "openapi-tui": { "inputs": { "fenix": "fenix", - "flake-utils": "flake-utils_3", + "flake-utils": "flake-utils_2", "nixpkgs": "nixpkgs_3", - "systems": "systems_5" + "systems": "systems_4" }, "locked": { "lastModified": 1741352034, @@ -303,7 +264,6 @@ }, "root": { "inputs": { - "eden": "eden", "fabric-dwl": "fabric-dwl", "home-manager": "home-manager", "nixpkgs": "nixpkgs_2", @@ -374,21 +334,6 @@ } }, "systems_4": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, - "systems_5": { "locked": { "lastModified": 1689347949, "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", diff --git a/flake.nix b/flake.nix index 6d0ba3a..9925745 100644 --- a/flake.nix +++ b/flake.nix @@ -23,24 +23,27 @@ url = "git+https://codeberg.org/FabricSoul/dwl"; flake = true; }; - eden = { - url = "github:grantimatter/eden-flake"; - inputs.nixpkgs.follows = "nixpkgs"; - }; }; outputs = { self, nixpkgs, + # nvidiaPkgs, home-manager, nixvim, openapi-tui, fabric-dwl, - eden, ... }: let lib = nixpkgs.lib; pkgs = nixpkgs.legacyPackages."x86_64-linux"; + # nvidiaPkgsWithUnfree = import nvidiaPkgs { + # config = { + # allowUnfree = true; + # }; + # overlays = []; + # system = "x86_64-linux"; + # }; in { nixosConfigurations = { solaris = lib.nixosSystem { @@ -60,13 +63,16 @@ modules = [ ./hosts/zion/default.nix ]; + # specialArgs = { + # nvidiaPkgs = nvidiaPkgsWithUnfree; + # }; }; }; homeConfigurations.fabric = home-manager.lib.homeManagerConfiguration { inherit pkgs; extraSpecialArgs = { - inherit nixvim openapi-tui eden; + inherit nixvim openapi-tui; }; modules = [ ./home/fabric/default.nix diff --git a/home/fabric/default.nix b/home/fabric/default.nix index c85a5ea..b5c2826 100644 --- a/home/fabric/default.nix +++ b/home/fabric/default.nix @@ -18,7 +18,6 @@ ./programs/yazi.nix ./programs/neomutt.nix ./programs/gpg.nix - ./programs/eden.nix # Import desktop configurations # ./desktop/hyprland.nix diff --git a/home/fabric/programs/eden.nix b/home/fabric/programs/eden.nix deleted file mode 100644 index 15b8563..0000000 --- a/home/fabric/programs/eden.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ - pkgs, - eden, - ... -}: { - home.packages = [ - eden.packages.${pkgs.system}.default - ]; -} diff --git a/hosts/common/optional/qemu.nix b/hosts/common/optional/qemu.nix deleted file mode 100644 index 1d05bf1..0000000 --- a/hosts/common/optional/qemu.nix +++ /dev/null @@ -1,5 +0,0 @@ -{pkgs, ...}: { - environment = { - systemPackages = [pkgs.qemu]; - }; -}