Update repository urls

This commit is contained in:
Michael Smith 2025-04-04 14:43:03 +02:00
parent 4619935c9a
commit 8cac364367
4 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@ See https://nixup.io/desk-os/learn-more
If you are running NixOS or you have the [Nix package manager](https://nixos.org/) installed, you can easily run a deskOS demo from this flake: If you are running NixOS or you have the [Nix package manager](https://nixos.org/) installed, you can easily run a deskOS demo from this flake:
```sh ```sh
nix run github:nixup-io/desk-os nix run git+https://git.michaelsmith.be/m/desk-os.git
``` ```
## Contact ## Contact

View File

@ -18,7 +18,7 @@ strings:
bootloaderEntryName: deskOS bootloaderEntryName: deskOS
productUrl: https://nixup.io productUrl: https://nixup.io
supportUrl: https://nixup.io supportUrl: https://nixup.io
knownIssuesUrl: https://github.com/nixup-io/desk-os/issues knownIssuesUrl: https://git.michaelsmith.be/m/desk-os/issues
releaseNotesUrl: https://nixup.io releaseNotesUrl: https://nixup.io
donateUrl: https://nixup.io donateUrl: https://nixup.io
images: images:

View File

@ -8,7 +8,7 @@ showReleaseNotesUrl: false
requirements: requirements:
requiredStorage: 60 requiredStorage: 60
requiredRam: 4.0 requiredRam: 4.0
internetCheckUrl: [ https://nixup.io, https://cache.nixos.org/ ] internetCheckUrl: [ https://cache.nixos.org/ ]
check: check:
- storage - storage
- ram - ram

View File

@ -54,9 +54,9 @@ flake = f"""
description = "deskOS flake"; description = "deskOS flake";
inputs = {{ inputs = {{
nixpkgs.url = "github:nixup-io/nixpkgs-desk-os/stable"; nixpkgs.url = "git+https://git.michaelsmith.be/m/nixpkgs-desk-os.git";
desk-os = {{ desk-os = {{
url = "github:nixup-io/desk-os"; url = "git+https://git.michaelsmith.be/m/desk-os.git";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}}; }};
}}; }};