24.05 updates

This commit is contained in:
albert 2024-06-12 21:27:57 +09:00
parent 927f8a3a8a
commit 3b75ab8aef
Signed by: albert
GPG key ID: 3895DD267CA11BA9
4 changed files with 20 additions and 18 deletions

View file

@ -48,11 +48,11 @@ nix develop -c /etc/nixos/git/docs/setup.sh
--- ---
# 📋 To Do List # 📋 To Do List
* [ ] Fix sysctl backup scripts * [x] Fix sysctl backup scripts
* [ ] 24.05 Updates: * [x] 24.05 Updates:
* [ ] Re-enable a few things <SPC-S> "TODO" * [x] Re-enable a few things <SPC-S> "TODO"
* [ ] Add sound to XRDP config * [x] Add sound to XRDP config
* [ ] vimPlugins.outline-nvim * [x] vimPlugins.outline-nvim
* [x] Yubikey * [x] Yubikey
* [x] Add static password to slot 1 * [x] Add static password to slot 1
* [x] Try Superfile - [Link](https://github.com/MHNightCat/superfile) * [x] Try Superfile - [Link](https://github.com/MHNightCat/superfile)
@ -66,9 +66,10 @@ nix develop -c /etc/nixos/git/docs/setup.sh
## Homelab general ## Homelab general
* [-] High Priority: * [-] High Priority:
* [x] Fix mailserver / roundcube failing to authenticate * [x] Fix mailserver / roundcube failing to authenticate
* [ ] Rearrange backups: * [x] Rearrange backups:
* Move /mnt/sdb/{Data,Backups} to /mnt/sda * Move /mnt/sdb/{Data,Backups} to /mnt/sda
* Move /mnt/sda/Movies to /mnt/sdb * Move /mnt/sda/Movies to /mnt/sdb
* Move /mnt/sdb/Music to /mnt/sda
* [ ] 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

View file

@ -39,7 +39,7 @@
deploy-rs.inputs.nixpkgs.follows = "nixpkgs"; deploy-rs.inputs.nixpkgs.follows = "nixpkgs";
# Manage Plasma desktop with Nix # Manage Plasma desktop with Nix
plasma-manager.url = "github:pjones/plasma-manager"; plasma-manager.url = "github:pjones/plasma-manager";
plasma-manager.inputs.nixpkgs.follows = "nixpkgs-unstable"; plasma-manager.inputs.nixpkgs.follows = "nixpkgs";
# compose2nix - Convert docker-compose.yml files to nix syntax # compose2nix - Convert docker-compose.yml files to nix syntax
compose2nix.url = "github:aksiksi/compose2nix"; compose2nix.url = "github:aksiksi/compose2nix";
compose2nix.inputs.nixpkgs.follows = "nixpkgs"; compose2nix.inputs.nixpkgs.follows = "nixpkgs";

View file

@ -122,16 +122,15 @@
# Alerts / CodeActions # Alerts / CodeActions
trouble = { trouble = {
enable = true; enable = true;
# TODO Re-enable on 24.05 settings = {
# settings = { auto_close = true;
# auto_close = true; auto_open = true;
# auto_open = true; cycle_results = false;
# cycle_results = false; height = 14;
# height = 14; win_config = {
# win_config = { border = "rounded";
# border = "rounded"; };
# }; };
# };
}; };
# Code Related # Code Related
@ -248,6 +247,7 @@
onedark-nvim onedark-nvim
rose-pine rose-pine
rust-vim rust-vim
outline-nvim
]; ];
}; };
} }

View file

@ -7,4 +7,5 @@
services.xrdp.openFirewall = true; services.xrdp.openFirewall = true;
services.xrdp.enable = true; services.xrdp.enable = true;
services.xrdp.audio.enable = true;
} }