Merge branch 'master' of github.com:starr-dusT/dotfiles

This commit is contained in:
Tyler Starr 2024-10-24 20:00:10 -07:00
commit 2585388001
3 changed files with 15 additions and 0 deletions

View File

@ -25,6 +25,7 @@
docker-compose
podman-tui
dive
appgate-sdp
];
# Modules

View File

@ -36,4 +36,10 @@
{ "url" = "https://old.reddit.com/r/nixos/"; name = "nixos-reddit"; }
{ "url" = "https://nixos.wiki/"; name = "nixos-wiki"; }
]; }
{ "name" = "Work"; "children" = [
{ url = "https://webmail.apps.mil/owa"; name = "WebMail";}
{ url = "https://dod.teams.microsoft.us/"; name = "Teams";}
{ url = "https://usaf-my.dps.mil/"; name = "OneDrive";}
]; }
]

View File

@ -0,0 +1,8 @@
self: super: {
appgate-sdp = super.appgate-sdp.overrideAttrs (old: {
src = super.fetchurl {
url = "https://bin.appgate-sdp.com/6.4/client/appgate-sdp_6.4.0_amd64.deb";
sha256 = "sha256-0h6Mz3B7fADGL5tGbrKNYpVIAvRu7Xx0n9OvjOeVCds=";
};
});
}