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

View file

@ -39,7 +39,7 @@
deploy-rs.inputs.nixpkgs.follows = "nixpkgs";
# Manage Plasma desktop with Nix
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.url = "github:aksiksi/compose2nix";
compose2nix.inputs.nixpkgs.follows = "nixpkgs";

View file

@ -122,22 +122,21 @@
# Alerts / CodeActions
trouble = {
enable = true;
# TODO Re-enable on 24.05
# settings = {
# auto_close = true;
# auto_open = true;
# cycle_results = false;
# height = 14;
# win_config = {
# border = "rounded";
# };
# };
settings = {
auto_close = true;
auto_open = true;
cycle_results = false;
height = 14;
win_config = {
border = "rounded";
};
};
};
# Code Related
# Parser generator tool
treesitter.enable = true;
# List of linters for nixvim
lint = {
enable = true;
@ -248,6 +247,7 @@
onedark-nvim
rose-pine
rust-vim
outline-nvim
];
};
}

View file

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