This commit is contained in:
Sebastian Moser
2023-12-22 22:36:25 +01:00
parent 308bfbe554
commit 6c72ddc81d
2 changed files with 16 additions and 6 deletions

View File

@@ -1,6 +0,0 @@
#!/bin/bash
export SUPABASE_KEY=$(cat ~/.mysecrets/log-supabase-key)
export SUPABASE_URL=$(cat ~/.mysecrets/log-supabase-url)
python3 ~/work/log/new/client.py $@

16
users/me/default.nix Normal file
View File

@@ -0,0 +1,16 @@
{ pkgs, secretsDir, inputs, ... }:
{
users.users.me = {
isNormalUser = true;
#passwordFile = "${secretsDir}/me-pwd";
password = "changeme";
extraGroups = [ "networkmanager" "wheel" "libvirtd" ]; # Enable sudo for the user.
};
#home-manager._module.args = { inherit inputs; };
home-manager.users.me = import ./home.nix;
fonts.fonts = with pkgs; [
hack-font
];
}