Add oscgoesbrrr to config
This commit is contained in:
19
flake.nix
19
flake.nix
@ -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";
|
||||||
@ -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 {
|
||||||
|
|
||||||
|
|||||||
6
home.nix
6
home.nix
@ -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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user