simplify fingerprint module

This commit is contained in:
2025-02-22 08:59:27 +01:00
parent 3c0832158f
commit 61090d1439
7 changed files with 82 additions and 62 deletions

View File

@ -1,10 +1,9 @@
{ inputs, ... }:
{
imports = [
../../modules/greetd.nix
../../modules/nvidia-support.nix
../../modules/open-fprint-suspend-fix.nix
inputs.fingerprint-sensor.nixosModules."06cb-009a-fingerprint-sensor"
];
imports = [
../../modules/greetd.nix
../../modules/nvidia-support.nix
../../modules/fingerprint.nix
];
}

View File

@ -1,16 +1,16 @@
{ pkgs, ... }:
let
username = "sadorowo";
fullname = "Franek";
preferredShell = pkgs.fish;
username = "sadorowo";
fullname = "Franek";
preferredShell = pkgs.fish;
in {
users.users.${username} = {
isNormalUser = true;
description = fullname;
home = "/home/${username}";
extraGroups = [ "wheel" "networkmanager" ];
shell = preferredShell;
ignoreShellProgramCheck = true; # Will do it later in profile configuration
};
users.users.${username} = {
isNormalUser = true;
description = fullname;
home = "/home/${username}";
extraGroups = [ "wheel" "networkmanager" ];
shell = preferredShell;
ignoreShellProgramCheck = true; # Will do it later in profile configuration
};
}