Skip to content

Commit

Permalink
🚀 Bluetooth is fixed
Browse files Browse the repository at this point in the history
By downgrading my Linux kernel lol
  • Loading branch information
elythh committed Feb 11, 2024
1 parent 905f0d1 commit e1d9033
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
24 changes: 20 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-stable.url = "nixpkgs/release-23.11";
nixpkgs-f2k.url = "github:moni-dz/nixpkgs-f2k";
nixpkgs-howdy.url = "github:fufexan/nixpkgs/howdy";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
Expand Down Expand Up @@ -35,7 +36,7 @@
nixvim.url = "github:elythh/nixvim";
};

outputs = { self, nixpkgs, home-manager, nixos-hardware, ... } @inputs:
outputs = { self, nixpkgs, nixpkgs-stable, home-manager, nixos-hardware, ... } @inputs:
let
inherit (self) outputs;
forSystems = nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed;
Expand All @@ -49,11 +50,11 @@
# Available through 'nixos-rebuild --flake .#your-hostname'
nixosConfigurations = {
# FIXME replace with your hostname
thinkpad = nixpkgs.lib.nixosSystem {
thinkpad = nixpkgs-stable.lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
modules = [
home-manager.nixosModule
nixos-hardware.nixosModules.lenovo-thinkpad-p14s-amd-gen2
#nixos-hardware.nixosModules.lenovo-thinkpad-p14s-amd-gen2
# > Our main nixos configuration file <
./hosts/thinkpad/configuration.nix
];
Expand Down

0 comments on commit e1d9033

Please sign in to comment.