diff --git a/README.md b/README.md index 63c2eaf1..3ffae1b1 100644 --- a/README.md +++ b/README.md @@ -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 "TODO" - * [ ] Add sound to XRDP config - * [ ] vimPlugins.outline-nvim +* [x] Fix sysctl backup scripts +* [x] 24.05 Updates: + * [x] Re-enable a few things "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 diff --git a/flake.nix b/flake.nix index faf1d391..b16dfeeb 100644 --- a/flake.nix +++ b/flake.nix @@ -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"; diff --git a/home-manager/common/software/cli/nixvim/base.nix b/home-manager/common/software/cli/nixvim/base.nix index 69a4f132..baed4906 100644 --- a/home-manager/common/software/cli/nixvim/base.nix +++ b/home-manager/common/software/cli/nixvim/base.nix @@ -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 ]; }; } diff --git a/nixos/containers/rdesktop/default.nix b/nixos/containers/rdesktop/default.nix index 5a628372..cb766182 100644 --- a/nixos/containers/rdesktop/default.nix +++ b/nixos/containers/rdesktop/default.nix @@ -7,4 +7,5 @@ services.xrdp.openFirewall = true; services.xrdp.enable = true; + services.xrdp.audio.enable = true; }