nixos/system/work.nix

22 lines
544 B
Nix
Raw Normal View History

{
lib,
pkgs,
username,
...
}:
{
2025-02-17 06:54:55 +00:00
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-latte.yaml";
2025-01-06 15:41:33 +00:00
services.samba.enable = true;
environment.systemPackages = with pkgs; [ twinkle ];
home-manager.users.${username} =
{ config, ... }:
{
imports = [ ./home/openfortivpn/ukaea.nix ];
2025-01-31 13:44:15 +00:00
programs.git.userEmail = config.accounts.email.accounts.outlook.address;
accounts.email.accounts = {
proton.primary = lib.mkForce false;
outlook.primary = lib.mkForce true;
};
};
}