diff --git a/README.md b/README.md index 61e1fbf..ab456d7 100644 --- a/README.md +++ b/README.md @@ -215,5 +215,5 @@ sudo nixos-rebuild switch --flake .#your-system-hostname - `upd-ts` - rebuild system and switch to it, but won't be added to bootloader. - `upd-bd` - only builds new configuration. -## TODO: -- Add instruction for needed PWA +## Winboat +I highly recommend using [Ghost Spectre 11](https://tech-latest.com/ghost-spectre-windows-11/#Download_Ghost_Spectre_Windows_11_Superlite_Version) as windows ISO for **winboat**. diff --git a/flake.lock b/flake.lock index f709a14..5ea6a01 100644 --- a/flake.lock +++ b/flake.lock @@ -301,7 +301,8 @@ "nix-flatpak": "nix-flatpak", "nixpkgs": "nixpkgs", "prismlauncher-cracked": "prismlauncher-cracked", - "stylix": "stylix" + "stylix": "stylix", + "winboat": "winboat" } }, "stylix": { @@ -433,6 +434,26 @@ "repo": "base16-zed", "type": "github" } + }, + "winboat": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1761401704, + "narHash": "sha256-zIaF3MEMNR17uiLLb+9bFjxar7EkOI6QyaOIxAhs/gQ=", + "owner": "TibixDev", + "repo": "winboat", + "rev": "aa868ea63512ab984c70c8a9e60ffe841a194167", + "type": "github" + }, + "original": { + "owner": "TibixDev", + "repo": "winboat", + "type": "github" + } } }, "root": "root", diff --git a/flake.nix b/flake.nix index 39f96fb..08b962b 100644 --- a/flake.nix +++ b/flake.nix @@ -36,6 +36,11 @@ inputs.nixpkgs.follows = "nixpkgs"; }; + winboat = { + url = "github:TibixDev/winboat"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + nix-flatpak.url = "github:gmodena/nix-flatpak?ref=latest"; }; diff --git a/modules/core/packages/virtualization.nix b/modules/core/packages/virtualization.nix index 19aa24d..c00deaa 100644 --- a/modules/core/packages/virtualization.nix +++ b/modules/core/packages/virtualization.nix @@ -1,9 +1,17 @@ -{ pkgs, ... }: +{ + pkgs, + inputs, + system, + ... +}: { environment.systemPackages = with pkgs; [ virt-viewer lazydocker docker-client distrobox + boxbuddy + freerdp + inputs.winboat.packages.${system}.winboat ]; }