Add oscgoesbrrr to config

This commit is contained in:
2025-09-29 00:51:48 -04:00
parent 1094859efd
commit 84e0615081
2 changed files with 22 additions and 5 deletions

View File

@ -14,6 +14,15 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
oscgoesbrrr = {
url = "github:TheButlah/OscGoesBrrr";
inputs.nixpkgs.follows = "nixpkgs";
};
nixgl = {
url = "github:nix-community/nixGL";
inputs.nixpkgs.follows = "nixpkgs";
};
# baballonia = { # baballonia = {
# url = "github:Project-Babble/Baballonia"; # url = "github:Project-Babble/Baballonia";
@ -25,7 +34,7 @@
# wayvr-dashbourd.url = "github:PassiveLemon/lemonake/master/pkgs/wayvr-dashboard" # wayvr-dashbourd.url = "github:PassiveLemon/lemonake/master/pkgs/wayvr-dashboard"
}; };
outputs = { self, nixpkgs, lix-module, home-manager, ...}@inputs: outputs = { self, nixpkgs, lix-module, home-manager, ...}@inputs:
{ {
nixosConfigurations.pewter = nixpkgs.lib.nixosSystem { nixosConfigurations.pewter = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
@ -49,7 +58,10 @@
homeConfigurations."abby@copper" = homeConfigurations."abby@copper" =
let let
system = "aarch64-linux"; system = "aarch64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = import nixpkgs {
system = system;
overlays = [ inputs.nixgl.overlay ];
};
in in
home-manager.lib.homeManagerConfiguration { home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
@ -66,7 +78,10 @@
homeConfigurations."pager@nicrosil" = homeConfigurations."pager@nicrosil" =
let let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = import nixpkgs {
system = system;
overlays = [ inputs.nixgl.overlay ];
};
in in
home-manager.lib.homeManagerConfiguration { home-manager.lib.homeManagerConfiguration {

View File

@ -21,7 +21,9 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
tmux tmux
htop inputs.oscgoesbrrr.packages.${system}.default
nixgl.nixGLIntel
# htop
#inputs.baballonia.${system}.default #inputs.baballonia.${system}.default
]; ];
@ -78,6 +80,6 @@ dashboard:
# Other misc conf files # Other misc conf files
xdg.configFile."kitty/kitty.conf".source = ./xdg/kitty/kitty.conf; xdg.configFile."kitty/kitty.conf".source = ./xdg/kitty/kitty.conf;
home.file.".zshrc".source = .xdg/zshrc; home.file.".zshrc".source = xdg/zshrc;
} }