...
This commit is contained in:
@@ -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
16
users/me/default.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user