Added boxbuddy and winboat flake.

This commit is contained in:
2025-10-27 22:20:38 +01:00
parent b91eb30fa9
commit b9f8bbfb9c
4 changed files with 38 additions and 4 deletions

View File

@@ -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**.

23
flake.lock generated
View File

@@ -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",

View File

@@ -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";
};

View File

@@ -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
];
}