2024-11-08 06:33:25 +00:00
|
|
|
{
|
2025-01-03 09:27:46 +00:00
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
username,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
{
|
2025-01-07 06:00:22 +00:00
|
|
|
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/one-light.yaml";
|
2025-01-06 15:41:33 +00:00
|
|
|
services.samba.enable = true;
|
2025-01-03 09:27:46 +00:00
|
|
|
environment.systemPackages = with pkgs; [ twinkle ];
|
2024-11-08 06:33:25 +00:00
|
|
|
home-manager.users.${username} =
|
|
|
|
{ config, ... }:
|
|
|
|
{
|
|
|
|
imports = [ ./home/openfortivpn/ukaea.nix ];
|
2025-01-08 11:22:34 +00:00
|
|
|
programs.git.userEmail = config.accounts.email.accounts.outlook.address;
|
2024-11-08 06:33:25 +00:00
|
|
|
accounts.email.accounts = {
|
|
|
|
proton.primary = lib.mkForce false;
|
|
|
|
outlook.primary = lib.mkForce true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|