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";
};
oscgoesbrrr = {
url = "github:TheButlah/OscGoesBrrr";
inputs.nixpkgs.follows = "nixpkgs";
};
nixgl = {
url = "github:nix-community/nixGL";
inputs.nixpkgs.follows = "nixpkgs";
};
# baballonia = {
# url = "github:Project-Babble/Baballonia";
@ -49,7 +58,10 @@
homeConfigurations."abby@copper" =
let
system = "aarch64-linux";
pkgs = nixpkgs.legacyPackages.${system};
pkgs = import nixpkgs {
system = system;
overlays = [ inputs.nixgl.overlay ];
};
in
home-manager.lib.homeManagerConfiguration {
inherit pkgs;
@ -66,7 +78,10 @@
homeConfigurations."pager@nicrosil" =
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
pkgs = import nixpkgs {
system = system;
overlays = [ inputs.nixgl.overlay ];
};
in
home-manager.lib.homeManagerConfiguration {

View File

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