Update
This commit is contained in:
parent
2f9b88ebd5
commit
59f927ae32
4 changed files with 23 additions and 21 deletions
35
README.md
35
README.md
|
@ -67,24 +67,25 @@ nix develop -c /etc/nixos/git/docs/setup.sh
|
||||||
* [ ] Fixes:
|
* [ ] Fixes:
|
||||||
* [ ] Migrate Forgejo sqlite db to MySQL
|
* [ ] Migrate Forgejo sqlite db to MySQL
|
||||||
* [ ] Alternatively, figure out why sqlite is taking so long to load
|
* [ ] Alternatively, figure out why sqlite is taking so long to load
|
||||||
* [ ] Upgrades:
|
* [-] Upgrades:
|
||||||
* [ ] Nextcloud 29
|
* [x] Nextcloud 29
|
||||||
* [ ] Traefik v3
|
* [x] Traefik v3
|
||||||
* [ ] ifargle.com
|
* [x] ifargle.com
|
||||||
* [ ] internal
|
* [x] internal
|
||||||
* [ ] External
|
* [x] External
|
||||||
* [ ] sysctl.io
|
* [x] sysctl.io
|
||||||
* [ ] internal
|
* [x] internal
|
||||||
* [ ] External
|
* [x] External
|
||||||
* [ ] Headscale 0.23
|
* [ ] Headscale 0.23
|
||||||
* [ ] Jellyfin 10.9
|
* [x] Jellyfin 10.9
|
||||||
* [ ] Lower Priority:
|
* [-] Lower Priority:
|
||||||
* [ ] Jitsi
|
* [x] Jitsi
|
||||||
* [ ] Mealie
|
* [ ] Mealie - v1.6.0
|
||||||
* [ ] Lemmy
|
* [ ] Add OIDC config
|
||||||
* [ ] Atuin
|
* [x] Lemmy
|
||||||
* [ ] Forgejo Runner
|
* [x] Atuin
|
||||||
* [ ] Synapse
|
* [x] Forgejo Runner
|
||||||
|
* [x] Synapse
|
||||||
|
|
||||||
Completed To Do List [here](./docs/complete.md)
|
Completed To Do List [here](./docs/complete.md)
|
||||||
|
|
||||||
|
|
|
@ -48,8 +48,8 @@
|
||||||
hyprland.url = "github:hyprwm/Hyprland";
|
hyprland.url = "github:hyprwm/Hyprland";
|
||||||
# Steam Deck configs for NixOS
|
# Steam Deck configs for NixOS
|
||||||
jovian.url = "github:Jovian-Experiments/Jovian-NixOS";
|
jovian.url = "github:Jovian-Experiments/Jovian-NixOS";
|
||||||
# Bitcoin node
|
# Superfile
|
||||||
nix-bitcoin.url = "github:fort-nix/nix-bitcoin/release";
|
superfile.url = "github:MHNightCat/superfile";
|
||||||
};
|
};
|
||||||
outputs = { self, nixpkgs, nixpkgs-wayland, home-manager, lanzaboote, nur, sops-nix, doom-emacs, nixos-generators, deploy-rs, jovian, ... } @inputs:
|
outputs = { self, nixpkgs, nixpkgs-wayland, home-manager, lanzaboote, nur, sops-nix, doom-emacs, nixos-generators, deploy-rs, jovian, ... } @inputs:
|
||||||
let
|
let
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, system, ... }: {
|
||||||
imports = [ ./small.nix ];
|
imports = [ ./small.nix ];
|
||||||
|
|
||||||
# List packages installed in system profile
|
# List packages installed in system profile
|
||||||
|
@ -26,5 +26,6 @@
|
||||||
busybox # Linux utilities
|
busybox # Linux utilities
|
||||||
ethtool # Ethernet troubleshooting:with
|
ethtool # Ethernet troubleshooting:with
|
||||||
file # Shows the types of files
|
file # Shows the types of files
|
||||||
|
inputs.inputs.superfile.packages.${system}.default # Superfile CLI file browser
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, system, ... }: {
|
||||||
# List packages installed in system profile
|
# List packages installed in system profile
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
tmux # terminal multiplexer
|
tmux # terminal multiplexer
|
||||||
|
|
Loading…
Reference in a new issue