Laptop specific configs, fingerprint scanner

This commit is contained in:
2025-02-02 16:56:07 +01:00
parent 9da67d058d
commit 1ce7875398
11 changed files with 88 additions and 71 deletions

View File

@ -37,16 +37,17 @@
}:
let
system = "x86_64-linux";
hostname = "thinkpad";
inherit (self) outputs;
common = import ./common.nix;
in
{
defaultPackage.${system} = home-manager.defaultPackage.${system};
defaultPackages.${system} = home-manager.defaultPackage.${system};
# Adds the nix fmt command to format nix files
formatter.${system} = nixpkgs.legacyPackages.${system}.nixfmt-rfc-style;
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
nixosConfigurations.${hostname} = nixpkgs.lib.nixosSystem {
system = system;
specialArgs = { inherit outputs inputs; }; # Pass args to modules
modules = [