diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-03-11 08:45:36 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-03-11 08:45:36 +0100 |
| commit | 073f516d74404bc77e056204ce3510fd391c54f1 (patch) | |
| tree | 09a001675dd0ed660ddcd9feb4e3238f33d21c72 | |
| parent | b834c69d9c8dca7544498fac68bfa9205c208bff (diff) | |
winapps: remove
| -rw-r--r-- | flake.lock | 86 | ||||
| -rw-r--r-- | flake.nix | 14 |
2 files changed, 1 insertions, 99 deletions
@@ -1,19 +1,5 @@ { "nodes": { - "flake-compat": { - "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", - "revCount": 57, - "type": "tarball", - "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.0.1/018afb31-abd1-7bff-a5e4-cff7e18efb7a/source.tar.gz" - }, - "original": { - "type": "tarball", - "url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz" - } - }, "flake-parts": { "inputs": { "nixpkgs-lib": [ @@ -53,24 +39,6 @@ "type": "github" } }, - "flake-utils_2": { - "inputs": { - "systems": "systems_3" - }, - "locked": { - "lastModified": 1710146030, - "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, "home-manager": { "inputs": { "nixpkgs": [ @@ -120,21 +88,6 @@ "type": "github" } }, - "nix-filter": { - "locked": { - "lastModified": 1731533336, - "narHash": "sha256-oRam5PS1vcrr5UPgALW0eo1m/5/pls27Z/pabHNy2Ms=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "f7653272fd234696ae94229839a99b73c9ab7de0", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "nix-filter", - "type": "github" - } - }, "nixpkgs": { "locked": { "lastModified": 1773068389, @@ -221,7 +174,6 @@ "nixpkgs-unstable": "nixpkgs-unstable", "nixvim": "nixvim", "webtray": "webtray", - "winapps": "winapps", "wofi-pass": "wofi-pass" } }, @@ -255,21 +207,6 @@ "type": "github" } }, - "systems_3": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, "webtray": { "inputs": { "nixpkgs": [ @@ -290,29 +227,6 @@ "url": "https://git.nathanreiner.xyz/webtray" } }, - "winapps": { - "inputs": { - "flake-compat": "flake-compat", - "flake-utils": "flake-utils_2", - "nix-filter": "nix-filter", - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1772376272, - "narHash": "sha256-+noIOy+/dZ5KiOJsc+QytK06giN6+beadm5SzW4Gy1k=", - "owner": "winapps-org", - "repo": "winapps", - "rev": "07d7fa4ec139d00434cf03444b2c031540b9871d", - "type": "github" - }, - "original": { - "owner": "winapps-org", - "repo": "winapps", - "type": "github" - } - }, "wofi-pass": { "inputs": { "nixpkgs": [ @@ -20,14 +20,10 @@ url = "git+https://git.nathanreiner.xyz/wofi-pass"; inputs.nixpkgs.follows = "nixpkgs"; }; - winapps = { - url = "github:winapps-org/winapps"; - inputs.nixpkgs.follows = "nixpkgs"; - }; }; outputs = - { nixpkgs, nixpkgs-unstable, webtray, winapps, ... }@attrs: + { nixpkgs, nixpkgs-unstable, webtray, ... }@attrs: let system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; }; @@ -49,14 +45,6 @@ nixpkgs.config.allowUnfree = true; } ) - ( - { pkgs, winapps, ... }: { - environment.systemPackages = [ - #winapps.packages."x86_64-linux".winapps - #winapps.packages."x86_64-linux".winapps-launcher # optional - ]; - } - ) ./hosts/${name} ./common ]; |