update lio and i001

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-12-07 18:42:46 -06:00
parent 30b08ecb9d
commit 770d3fb859
5 changed files with 69 additions and 68 deletions

View file

@ -29,6 +29,7 @@
flatpaks,
beszel,
ros_neovim,
nixpkgs-unstable,
...
}@inputs:
let
@ -43,11 +44,17 @@
lib.nixosSystem {
specialArgs = {
inherit inputs;
upkgs = import inputs.nixpkgs-unstable {
config.allowUnfree = true;
};
};
modules = [
({
nixpkgs.overlays = [
(final: prev: {
unstable = import nixpkgs-unstable {
inherit (final) system config;
};
})
];
})
home-manager.nixosModules.default
inputs.de_plasma.nixosModules.default
@ -97,14 +104,12 @@
# ./jails_text.nix
# ./hyprland_customizations.nix
# ./sway_customizations.nix
./i3_customizations.nix
./opencode-shim.nix
# ./i3_customizations.nix
./vms.nix
(
{
config,
pkgs,
upkgs,
lib,
...
}:
@ -140,7 +145,6 @@
extraSpecialArgs = {
inherit inputs;
inherit upkgs;
};
};
@ -168,17 +172,16 @@
vlang
ttyd
pavucontrol
unstable.opencode
];
services.flatpak.packages = [
"org.signal.Signal"
"dev.vencord.Vesktop"
"md.obsidian.Obsidian"
"com.spotify.Client"
"com.bitwarden.desktop"
"org.openscad.OpenSCAD"
"org.blender.Blender"
"com.rustdesk.RustDesk"
];
networking.firewall.allowedTCPPorts = [

View file

@ -1,20 +0,0 @@
{ pkgs, ... }:
{
programs = {
nix-ld = {
enable = true;
libraries = with pkgs; [
icu
gmp
glibc
openssl
stdenv.cc.cc
];
};
};
environment.shellAliases = {
"oc" =
"all_proxy='' http_proxy='' https_proxy='' /home/josh/other/opencode/node_modules/opencode-linux-x64/bin/opencode";
"occ" = "oc -c";
};
}